码迷,mamicode.com
首页 > 系统相关 > 详细

Ubuntu 17 Nginx 配置 laravel 运行环境

时间:2018-04-10 10:49:39      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:webroot   mis   list   文件   ubuntu   listen   etc   serve   安装   

1 安装 nginx

#aptitude install nginx

#apatitude install php7.1-fpm

2 在 /etc/nginx/sites-available 建立 semis.conf 如下:

server {
         listen 80;
         listen [::]:80;

        server_name semis.test;

        root /var/www/app/semis/webroot/public;
         index index.php;

        location / {
                 #try_files $uri $uri/ =404;
                 try_files $uri $uri/ /index.php?$query_string;
         }

        location ~ \.php$ {
                 include snippets/fastcgi-php.conf;
                 fastcgi_pass unix:/var/run/php/php7.1-fpm.sock;
         }

}

3 如果 Laravel 是5.5 版本,可以不加下页这行(估计是 public/.htaccess 文件生效了)

try_files $uri $uri/ /index.php?$query_string;

Ubuntu 17 Nginx 配置 laravel 运行环境

标签:webroot   mis   list   文件   ubuntu   listen   etc   serve   安装   

原文地址:https://www.cnblogs.com/mouseleo/p/8776452.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!