nginx静态资源代理配置

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;
        }
    }

 

 

posted @ 2018-12-30 09:57  墨小枫233  阅读(961)  评论(0编辑  收藏  举报