Nginx 反向代理减慢网站速度

Nginx 反向代理减慢网站速度

我刚刚开始使用 nginx,但是我在新服务器上设置了反向代理,这确实减慢了我的网站速度以及视频和图像的加载速度。

也许这里有人知道需要添加一些参数或者我可以改变哪些参数来提高速度。

这是我的 nginx.conf:

    server {
    listen       80;
    listen       [::]:80;
    listen       443 ssl http2;
    listen       [::]:443 ssl http2;

    server_name  website.com www.website.com admin.website.com staging.website.com cdn.website.com;
    root         /usr/share/nginx/html;

    # Load configuration files for the default server block.
    include /etc/nginx/default.d/*.conf;

    location / {
            proxy_pass $scheme://1.xxx.xxx.xxx;
            proxy_redirect          off;
            proxy_set_header        Host            $host;
            proxy_set_header        X-Real-IP       $remote_addr;
            proxy_buffering Off;

            proxy_read_timeout 600;
            proxy_send_timeout 600;

            proxy_buffers 8 2048k;
            proxy_buffer_size 2048k;

            client_max_body_size       30m;
    }

    error_page 404 /404.html;
        location = /40x.html {
    }

    error_page 500 502 503 504 /50x.html;
        location = /50x.html {
    }
    }

相关内容