搜索
您的当前位置:首页正文

访问Ubuntu Nginx默认进入3000

来源:二三娱乐

Ubuntu 默认进入3000端口:

在/etc/nginx/si.../default 里面加入

location / {

                client_max_body_size 50m;

                proxy_set_header Connection "upgrade";

                proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

                proxy_set_header Host $host;

        }

Top