标签:str 转发 权限 目的 gif https bsp 反向代理 访问
1 #通过 location 匹配yii项目配置如下 2 location /quick-mould/ { 3 root /home/php_project; 4 fastcgi_pass 127.0.0.1:9000; 5 fastcgi_index index.php; 6 fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; 7 include fastcgi_params; 8 } 9 10 11 #上面的可以访问PHP脚本了, 但是项目里的静态资源访问不到, 所以需要再配置一个location, 并且要注意 红色部分不要有空格, 否则有语法错误 12 location ~* /quick-mould/.*\.(gif|jpg|jpeg|bmp|png|ico|txt|js|css)$ { 13 root /home/php_project; # 当请求/quick-mould目录下的静态资源的时候, 才会匹配到这个location, 访问其他目录下的不会匹配 14 }
nginx之location部署yii项目(不使用nginx端口转发)
标签:str 转发 权限 目的 gif https bsp 反向代理 访问
原文地址:https://www.cnblogs.com/bneglect/p/11766441.html