码迷,mamicode.com
首页 > 其他好文 > 详细

CI项目本地部署

时间:2020-01-20 20:43:39      阅读:65      评论:0      收藏:0      [点我收藏+]

标签:ati   last   man   info   更改   fas   oca   lis   backend   

nginx 配置

server  {
        listen 80;
        server_name www.xxx.cn wwwcdn.xxx.cn;

        allow  all;
        autoindex off;

        root   /export/manager/OL/xxx;
        index index.php  index.html index.htm;


        location ~ \.php($|/) {
                fastcgi_pass   main_backend;
                fastcgi_index  index.php;
                fastcgi_split_path_info ^(.+\.php)(.*)$;
                fastcgi_param   PATH_INFO $fastcgi_path_info;
                fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
                include        fastcgi_params;
        }


        if (!-e $request_filename) {  #这样可以在链接中去掉index.php
            rewrite ^/(.*)$ /index.php/$1 last;
            break;
        }


        location ~ /\.ht {
                deny  all;
        }

}

 

项目更改:

 

CI项目本地部署

标签:ati   last   man   info   更改   fas   oca   lis   backend   

原文地址:https://www.cnblogs.com/bandbandme/p/12219130.html

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