在lnmp环境下thinkphp5的一些必要配置
程序员文章站
2022-04-22 16:51:38
...
我们都知道的,tp5 默认在 nginx 服务器 是不能正常工作的,需要我们手动配置 nginx 服务器 以便对 tp 5 的支持!这篇文章主要介绍了在lnmp环境下thinkphp5的一些必要配置,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
打开 Nginx 站点配置文件
$ sudo vi /etc/nginx/vhost/vhost_siteA.conf
编辑站点配置文件
#自定义服务器配置开始 server { listen 80; # 监听端口 server_name www.test.com test.com; # 站点域名 set $root /var/www/html/shengteng-group/public/; # 站点根目录 location ~ .*\.(gif|jpg|jpeg|bmp|png|ico|txt|js|css)$ { root $root; } location / { root $root; index index.html index.php; if ( -f $request_filename) { break; } if ( !-e $request_filename) { rewrite ^(.*)$ /index.php/$1 last; break; } } location ~ .+\.php($|/) { fastcgi_pass unix:/run/php/php7.0-fpm.sock; fastcgi_split_path_info ^((?U).+.php)(/?.+)$; fastcgi_param PATH_INFO $fastcgi_path_info; fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info; fastcgi_param SCRIPT_FILENAME $root$fastcgi_script_name; include fastcgi_params; } }#自定义服务器配置结束
重启 Nginx 服务器 即可
$ service nginx restart
相关推荐:
以上就是在lnmp环境下thinkphp5的一些必要配置的详细内容,更多请关注其它相关文章!
下一篇: 基于php的json rpc原理及应用
推荐阅读
-
在Linux的LEMP环境下配置OpenSSL的教程
-
Ngnix在Windows下的安装及环境配置(将nginx作为服务运行)
-
在Debian系统下配置LNMP的教程
-
Jira7.10.1在Windows环境下的安装和配置教程图解
-
CentOS7.6系统下使用yum配置lnmp环境的方法
-
在APACHE环境下配置下载服务器的注意事项
-
Python环境下PyQt5的安装以及QT Desinger和PyUIC在Pycharm中的配置
-
DJI guidance SDK在Ubuntu16.04环境下的安装配置
-
openGL在VS2017环境下的配置
-
手把手教你在win10系统下搭建python3_django_mysql的环境配置