ThinkAdmin 服务器 Nginx 配置
2022/2/28 7:21:25
本文主要是介绍ThinkAdmin 服务器 Nginx 配置,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
下面的配置是 ThinkAdmin 框架的 Nginx 配置,thinkphp 项目可以通用。
server { listen 80; server_name xxx.com; root /data/php/xxx/public; index index.php index.html index.htm; location / { try_files $uri $uri/ @rules; #if (!-e $request_filename) { # rewrite ^(.*)$ /index.php?s=/$1 last; #} } location @rules { rewrite ^(.*)$ /index.php?s=/$1 last; } location = /favicon.ico { log_not_found off; access_log off; } location = /robots.txt { allow all; log_not_found off; access_log off; } location ~* ^.+.(jpg|jpeg|gif|css|png|js|ico)$ { #access_log off; expires 30d; } # deny access to .htaccess files, if Apache's document root # concurs with nginx's one location ~ /\.ht { deny all; } # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 location ~ \.php$ { try_files $uri /index.php =404; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name; #fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } access_log /var/log/nginx/xxx.com.access.log logstash; error_log /var/log/nginx/xxx.com.error.log warn; }
这篇关于ThinkAdmin 服务器 Nginx 配置的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-13用Nginx防范DDoS攻击的那些事儿
- 2024-12-13用Terraform在AWS上搭建简单NGINX服务器指南
- 2024-10-29Nginx发布学习:从入门到实践的简单教程
- 2024-10-28Nginx发布:新手入门教程
- 2024-10-21nginx 怎么设置文件上传最大20M限制-icode9专业技术文章分享
- 2024-10-17关闭 nginx的命令是什么?-icode9专业技术文章分享
- 2024-09-17Nginx实用篇:实现负载均衡、限流与动静分离
- 2024-08-21宝塔nginx新增8022端口方法步骤-icode9专业技术文章分享
- 2024-08-21nginx配置,让ws升级为wss访问的方法步骤-icode9专业技术文章分享
- 2024-08-15nginx ws代理配置方法步骤-icode9专业技术文章分享