我在Nginx反向代理后面运行NodeBB,偶尔会经历超过10秒的加载时间,否则平均需要2秒的加载时间(仍然太多)。还应注意,当我在运行NodeBB的端口上访问论坛时,加载时间总计约为200毫秒,但我不需要这样做。

我一辈子都无法弄清楚为什么这种反向代理是如此之慢。

如果要弄清楚哪些部分加载缓慢,请随时检查the NodeBB install上的网络流量。

欢迎并提出所有建议!

这是我的Nginx服务器:

server {
    listen 80;
    server_name forums.hydroxium.com;

    location / {
            proxy_http_version 1.1;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header Upgrade $http_upgrade;
            proxy_set_header Connection 'upgrade';
            proxy_set_header Host $host;
            proxy_redirect off;
            proxy_pass http://127.0.0.1:4567;
    }


这是我的Nginx配置:

user www-data;
worker_processes 4;
worker_rlimit_nofile 20480;
pid /run/nginx.pid;

events {
    worker_connections 5120;
    multi_accept on;
    use epoll;
}

http {

    ##
    # Basic Settings
    ##

    sendfile on;
    tcp_nopush on;
    tcp_nodelay on;
    keepalive_timeout 65;
    types_hash_max_size 2048;
    charset utf-8;
    client_body_timeout 65;
    client_header_timeout 65;
    client_max_body_size 10m;

    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;
}

最佳答案

事实证明,正在运行的VPS就是问题所在,它根本没有足够的能力同时运行所有程序而不会变慢。

09-26 01:53