溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

phalcon + nginx 混合模式配置

發(fā)布時間:2020-06-27 21:59:33 來源:網(wǎng)絡(luò) 閱讀:750 作者:sendoffice 欄目:web開發(fā)

配置目的: 一個子目錄下的代碼使用框架,其他部分不采用。
配置如下(僅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問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI