phalcon + nginx 混合模式配置

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了phalcon + nginx 混合模式配置相关的知识,希望对你有一定的参考价值。

配置目的: 一个子目录下的代码使用框架,其他部分不采用。
配置如下(仅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 混合模式配置的主要内容,如果未能解决你的问题,请参考以下文章

基于nginx+swoole+phalcon+atlas实现的高性能负载均衡集群系列之构建篇

配置nginx使之支持pathinfo

phpstudy下安装phalcon

在视图中访问 Phalcon 配置值的最简单方法是啥?

phalcon:官方多模块支models层,mode数据库配置

phalcon 怎么使用 redis的list