温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

phalcon + nginx 混合模式配置

发布时间:2020-06-27 21:59:33 来源:网络 阅读:727 作者:sendoffice 栏目:web开发

配置目的: 一个子目录下的代码使用框架,其他部分不采用。
配置如下(仅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;
                }
        }
向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI