码迷,mamicode.com
首页 > Web开发 > 详细

Debian Buster Nginx 布署 Brophp 项目(类 Thinkphp)

时间:2018-08-12 11:54:48      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:serve   cat   php   path   index.php   uri   sni   test   server   

配置文件

/etc/nginx/sites-available/pis

server {
         listen 80;
         root /mnt/code/pis/webroot;
         index index.php;
         server_name pis.testing;

        location / {
                 try_files $uri $uri/ =404;
         }

        location ~ \.php(/|$) {
                 include snippets/fastcgi-php.conf;
                 fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;

                fastcgi_split_path_info ^(.+\.php)(/.+)$;
         }
}

Debian Buster Nginx 布署 Brophp 项目(类 Thinkphp)

标签:serve   cat   php   path   index.php   uri   sni   test   server   

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

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