原创

nginx配置文件


nginx配置文件

转发服务路径端口与权重

upstream blog{
        server localhost:8088 weight=2;
        server localhost:8089 weight=1;
        }
weight代表权重

server里的转发配置绑定

location / {
                # First attempt to serve request as file, then
                # as directory, then fall back to displaying a 404.
                proxy_pass http://blog;
                try_files $uri $uri/ =404;
			}

server里的静态文件配置

location ~ .* {
                proxy_pass http://blog;
                proxy_set_header Host $http_host;
                proxy_set_header X-Real-IP $remote_addr;
                proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
               }

Linux
  • 作者:黄伟明
  • 发表时间:2020-07-13 17:37
  • 版权声明:非商业自由转载

评论



留言