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

phalcon + nginx 混合模式配置

时间:2018-08-17 17:11:26      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:public   目录   request   127.0.0.1   local   stc   html   ams   pat   

配置目的: 一个子目录下的代码使用框架,其他部分不采用。
配置如下(仅server段,其他参见nginx文档):

        server {

                listen   80;
                server_name localhost.dev;
                index index.php index.html index.htm i.php;
                set $root_path ‘/var/www/‘;
                root $root_path;

                client_max_body_size 2M;

                location /backend {
                    # if (-f $request_filename) { break; }
                    rewrite ^/backend/(.*)$ /backend/public/index.php?_url=/$1;
                }

                location ~ \.php {
                fastcgi_buffer_size 128k;
                fastcgi_buffers 4 256k;
                fastcgi_busy_buffers_size 256k;
                        fastcgi_pass   127.0.0.1:9000;
                        fastcgi_index  /index.php;

                        include fastcgi_params;

                        fastcgi_split_path_info       ^(.+\.php)(/.+)$;
                        fastcgi_param PATH_INFO       $fastcgi_path_info;
                        fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
                        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                }

                location ~* ^/(css|img|js|flv|swf|download)/(.+)$ {
                        root $root_path;
                }

                location ~ /\.ht {
                        deny all;
                }
        }

phalcon + nginx 混合模式配置

标签:public   目录   request   127.0.0.1   local   stc   html   ams   pat   

原文地址:http://blog.51cto.com/livestreaming/2161244

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