nginx 作为前端服务,文件服务器及其后端代理服务等配置

nginx作为前端服务器的跳转,文件服务器和后端代理的服务,怎么配置这个nginx服务呢

server {
        listen 80 default_server;
        listen [::]:80 default_server;


    location  /dist/ {
        alias  /home/nwprod/;
        index index.html index.htm;
        allow all;
    }


    location  /zbnc-ant-data/ {
        alias  /home/zb-znhc-data/;
        allow all;
    }



        location /zbnc-ant/ {
        proxy_pass http://127.0.0.1:8080/;
        client_max_body_size 1000M;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_redirect off;
         }

}

你可能感兴趣的:(1024程序员节)