nginx - 为每个路径返回 http 410 代码

nginx - 为每个路径返回 http 410 代码

我正在尝试配置 nginx 返回 http 410(“资源消失”)代码任何/ 下的路径

我的配置如下。

使用此配置,如果我请求 /410test,我会得到一个标准的 nginx 404 Not Found 页面,以及 404 的响应状态代码。因此,我什至无法为一个特定路径获取 410 的响应,更不用说所有路径了。

user www-data;
worker_processes auto;
pid /run/nginx.pid;
include /etc/nginx/modules-enabled/*.conf;

events {
    worker_connections 768;
    # multi_accept on;
}

http {
    server {
        location /410test {
                return 410 "this is my 410 test page";
        }

    }


    sendfile on;
    tcp_nopush on;
    tcp_nodelay on;
    keepalive_timeout 65;
    types_hash_max_size 2048;

    include /etc/nginx/mime.types;
    default_type application/octet-stream;

    ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
    ssl_prefer_server_ciphers on;

    access_log /var/log/nginx/access.log;
    error_log /var/log/nginx/error.log;

    gzip on;

    include /etc/nginx/conf.d/*.conf;
    include /etc/nginx/sites-enabled/*;
}

答案1

您缺少配置中块listen中的指令。您将从&server下定义的网站收到 404 错误。conf.dsites-enabled

答案2

return直接放在server上下文中:

http {
    server {
        return 410 "this is my 410 test page";
    }
}

为什么它不适用于您的配置,可能是因为您尝试访问/410test/(带有尾部斜杠)与您定义的location.

相关内容