Nginx 用户更改导致 Chrome 上的黑屏和 200 错误

Nginx user change causes blank screen on Chrome and 200 error

我的主 nginx.conf 文件已将用户设置为 nginx,如下所示:

user                 nginx;

我希望将用户切换为默认 www-data 用户,但 运行 遇到问题。如果我在 conf 文件中更改用户并重新加载 nginx,Chrome 会显示一个空白页面并且控制台会显示以下错误:

net::ERR_HTTP2_PROTOCOL_ERROR 200

只要我将用户切换回 nginx 并重新加载,它就可以正常工作。

切换用户时我错过了什么?这是配置文件。

user                 nginx;
pid                  /var/run/nginx.pid;
worker_processes     auto;
worker_rlimit_nofile 65535;

# Load module section
load_module "modules/ngx_http_brotli_filter_module.so";
load_module "modules/ngx_http_brotli_static_module.so";

events {
    multi_accept       on;
    worker_connections 65535;
}

http {

    upstream php {
        server unix:/var/run/php/php7.4-fpm.sock;
        server unix:/var/run/php/php7.3-fpm.sock backup;
    }

    charset              utf-8;
    sendfile             on;
    tcp_nopush           on;
    tcp_nodelay          on;
    server_tokens        off;
    log_not_found        off;
    types_hash_max_size  2048;
    client_max_body_size 16M;

    # MIME
    include              mime.types;
    default_type         application/octet-stream;

    # Logging
    access_log           /var/log/nginx/access.log;
    error_log            /var/log/nginx/error.log warn;

    # Limits
    limit_req_log_level  warn;
    limit_req_zone       $binary_remote_addr zone=login:10m rate=10r/m;

    # SSL
    ssl_session_timeout  1d;
    ssl_session_cache    shared:SSL:10m;
    ssl_session_tickets  off;

    # Mozilla Modern configuration
    ssl_protocols        TLSv1.2 TLSv1.3;

    # OCSP Stapling
    ssl_stapling         on;
    ssl_stapling_verify  on;
    resolver             1.1.1.1 1.0.0.1 8.8.8.8 8.8.4.4 208.67.222.222 208.67.220.220 valid=60s;
    resolver_timeout     2s;

    # Cache Settings
    fastcgi_cache_key    "$scheme$request_method$host$request_uri";

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

以防万一其他人遇到这个问题,我已经弄明白了。

就我而言,黑屏的原因是缓存设置。一旦我删除了 /var/cache/nginx 中的所有内容,我就能够根据需要切换 Nginx 用户。