多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
``` server { listen 80; # 访问端口 server_name www.hpweb.top; # 配置的域名 access_log /var/log/nginx/www.hpweb.com.log; # access_log日志文件 error_log /var/log/nginx/www.hpweb.com.error.log; # error_log错误日志文件 client_max_body_size 2048m; # 请求体的大小,若超过所设定的大小,返回413错误 #location /#/ { # 前端访问 #index index.html index.htm; #} location / { # 伪静态 index index.html index.htm; try_files $uri $uri/ /index.php?$query_string; autoindex off; } # 以php结尾的走这里 location ~ \.php$ { root /wwwroot/test/dev/test; # 后台根目录 fastcgi_pass lnmp_php74:9000; # PHP解释器:将请求转发给本机9000端口 fastcgi_index index.php; # 默认的请求文件名:PHP的默认文件名称[index.php] fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; # 脚本文件请求的路径 include fastcgi_params; # 加载其他配置文件 } } ```