NodeBB对Nginx反向代理

时间:2015-09-03 23:54:20

标签: node.js networking nginx socket.io nodebb

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

我不能为我的生活弄清楚为什么这个反向代理会像它一样慢。

如果您想了解哪些部分的加载速度很慢,请随时检查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;
}

1 个答案:

答案 0 :(得分:0)

原来运行的VPS是问题所在,它根本没有足够的力量同时运行所有内容而不会很慢。