为什么 nginx 在 vagrant 下不提供我的 404 页面?

为什么 nginx 在 vagrant 下不提供我的 404 页面?

我有一个静态 HTML 网站,其 404 页面位于 /404/index.html。Vagrant 将端口 80 映射到 9000,因此我可以通过 访问我的网站http://localhost:9000。该网站可以浏览,但如果我尝试强制显示 404 错误,则会看到 /index.html。我尝试过按照一系列教程操作,但最终总是显示索引页。

如果我这样做,vagrant ssh我会有同样的经历。唯一的区别是我可以执行并查看 404 页面的内容。Ansible在配置期间curl http://localhost/404/扩展了模板项的值。{{ }}

默认(站点模板)

server {
    listen 80 default_server;
    listen [::]:80 default_server ipv6only=on;

    root {{ web_root }};
    index index.html index.htm;

    # Make site accessible from `http://localhost/`
    server_name localhost;

    location / {
        # First attempt to serve request as file, then
        # as directory, then fall back to displaying a 404.
        try_files $uri $uri/ /index.html;
        # Uncomment to enable naxsi on this location
        # include /etc/nginx/naxsi.rules
    }

    location /doc/ {
        alias /usr/share/doc/;
        autoindex on;
        allow 127.0.0.1;
        allow ::1;
        deny all;
    }

    # Only for nginx-naxsi used with nginx-naxsi-ui : process denied requests
    #location /RequestDenied {
    #   proxy_pass http://127.0.0.1:8080;
    #}

    error_page 400 404 /404/index.html;
    location = /404/index.html {
        root {{ web_root }};
    }



    # redirect server error pages to the static page /50x.html
    #
    #error_page 500 502 503 504 /50x.html;
    #location = /50x.html {
    #   root /usr/share/nginx/html;
    #}

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    #location ~ \.php$ {
    #   fastcgi_split_path_info ^(.+\.php)(/.+)$;
    #   # NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
    #
    #   # With php5-cgi alone:
    #   fastcgi_pass 127.0.0.1:9000;
    #   # With php5-fpm:
    #   fastcgi_pass unix:/var/run/php5-fpm.sock;
    #   fastcgi_index index.php;
    #   include fastcgi_params;
    #}

    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #
    #location ~ /\.ht {
    #   deny all;
    #}
}

nginx.conf

user www-data;
worker_processes {{ ansible_processor_count }};

pid /var/run/nginx.pid;

events {
    worker_connections {{ connections }} ;
    # multi_accept on;
}

http {

    ##
    # Basic Settings
    ##

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

    # server_names_hash_bucket_size 64;
    # server_name_in_redirect off;

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

    ##
    # Logging Settings
    ##

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

    ##
    # Gzip Settings
    ##

    gzip on;
    gzip_disable "msie6";

    # gzip_vary on;
    # gzip_proxied any;
    # gzip_comp_level 6;
    # gzip_buffers 16 8k;
    # gzip_http_version 1.1;
    # gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;

    ##
    # If HTTPS, then set a variable so it can be passed along.
    ##

    map $scheme $server_https {
        default off;
        https on;
    }

    ##
    # Virtual Host Configs
    ##

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

答案1

说实话,我还没有尝试过不同的 404 页面,但拥有try_files $uri $uri/ /index.html;和获取index.html是我所期望的。

尝试更改为try_files $uri $uri/ /404/index.html;

相关内容