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;
}
}
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:nginx静态资源代理配置 - Python技术站