例子 项目分为前台和后台 后台有上传图片等功能给前台用 后台web根目录为admin 前台web根目录为frontend nginx 配置 server { server admin; listen 9000; root admin; location ~ .*\.(js|css|png)$ { #后台不存资源资源都保存到前台 能保证使用后台域名访问前台的静态资源 try_files @fronted } location @fronted { proxy_pass http://127.0.0.1:9100; } } server { server fronted; listen 9100; root fronted; location ~ .*\.(js|css|png)$ { try_files $uri =404; } }
参考连接:http://nginx.org/en/docs/http/ngx_http_core_module.html
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:使用nginx try_files 指令 管理静态资源 - Python技术站