nginx静态资源代理配置

版权声明:技术交流群:758191639 https://blog.csdn.net/u014131617/article/details/85334945
server {
        listen       80;
        server_name  localhost;
              root F:/360downloads/;
             
        location / {
            index  index.html index.htm;
        }

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

 

 

猜你喜欢

转载自blog.csdn.net/u014131617/article/details/85334945