关于nginx地址配置

配置nginx(在里面加地址)

  • cd /usr/local/etc/
  • cd nginx/
  • vi nginx.conf    location下面加

 location /custom-service-backend/ {

                proxy_pass http://ops.test.ximalaya.com;

        }

  • sudo nginx -s reload -c /usr/local/etc/nginx/nginx.conf      重新启动

注解:在location /custom-service-backend/   指得是 从这个项目下面拿东西 ,如果是location  就是从本地拿

如果项目中用到了websocket,则配置的时候:

 location /custom-service-backend/ {

                proxy_pass http://ops.test.ximalaya.com;

                proxy_set_header Upgrade $http_upgrade;

                proxy_set_header Connection "upgrade";

扫描二维码关注公众号,回复: 1031493 查看本文章

        }



如果nginx的最大连接数超出限制,(最大连接数=连接数*进程数),需要修改worker_connections

 



猜你喜欢

转载自blog.csdn.net/gloria199091/article/details/80067170
今日推荐