宝塔1024及双11特惠活动,企业版1099元/年,送SSL证书,最高立减2万元!查看活动
当前位置:论坛首页 > Linux面板 > 讨论

希望对Laravel5的兼容性好点,现在需要自己改NGINX的文件.

发表在 Linux面板2017-5-1 00:02 [复制链接] 3 2684

希望对Laravel5的兼容性好点,现在需要自己改NGINX的文件.~
使用道具 举报 只看该作者 回复
发表于 2017-5-2 10:21:15 | 显示全部楼层
好的 会考虑 如果你能提供一个nginx样本更好
使用道具 举报 回复 支持 反对
发表于 2017-9-13 13:10:40 | 显示全部楼层
server {
                    listen 80;
                    root /var/www/laravel/public;  #访问文件目录
                    index index.php index.html index.htm index.nginx-debian.html;
                    server_name lnmp.com;    #将server_domain_or_IP修改为你的公网IP或者域名
                    location / {
                        try_files $uri $uri/ /index.php?$query_string; #开启路由访问,laravel项目改为此条
                            }   
                        location ~ \.php$ {
                            try_files $uri /index.php =404;
                            fastcgi_split_path_info ^(.+\.php)(/.+)$;
                        fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
                        #确认php7.0-fpm.sock的位置,错误将无法正确识别php代码
                        fastcgi_index index.php;
                        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                        include fastcgi_params;
                    }
                    location ~ /\.ht {
                            deny all;
                    }
            }
使用道具 举报 回复 支持 反对
发表于 2017-9-13 13:11:52 | 显示全部楼层
河妖 发表于 2017-5-2 10:21
好的 会考虑 如果你能提供一个nginx样本更好

server {
                    listen 80;
                    root /var/www/laravel/public;  #访问文件目录
                    index index.php index.html index.htm index.nginx-debian.html;
                    server_name lnmp.com;    #将server_domain_or_IP修改为你的公网IP或者域名
                    location / {
                        try_files $uri $uri/ /index.php?$query_string; #laravel项目,路由设置
                            }   
                        location ~ \.php$ {
                            try_files $uri /index.php =404;
                            fastcgi_split_path_info ^(.+\.php)(/.+)$;
                        fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
                        #确认php7.0-fpm.sock的位置,错误将无法正确识别php代码
                        fastcgi_index index.php;
                        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                        include fastcgi_params;
                    }
                    location ~ /\.ht {
                            deny all;
                    }
            }
使用道具 举报 回复 支持 反对
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

普通问题处理

论坛响应时间:72小时

问题处理方式:排队(仅解答)

工作时间:白班:9:00 - 18:00

紧急运维服务

响应时间:3分钟

问题处理方式:宝塔专家1对1服务

工作时间:工作日:9:00 - 18:30

宝塔专业团队为您解决服务器疑难问题

立即付费处理

工作时间:09:00至24:00

快速回复 返回顶部 返回列表