ngxin alias php 多应用
以前一直懒得搞,今天被要求把论坛挂在默认域名下面0.0
默认应用在/home/www/php/aaa里
论坛在/home/www/php/aaabbs里
-
server
-
{
-
listen 80;
-
server_name
-
index index.php index.html;
-
charset utf8;
-
gzip_min_length 1024;
-
location / {
-
charset utf8;
-
root /home/www/php/aaa;
-
}
-
-
location /bbs/ {
-
charset utf8;
-
alias /home/www/php/aaabbs/;
-
index index.php;
-
}
-
-
location /bbs {
-
charset utf8;
-
alias /home/www/php/aaabbs;
-
index index.php;
-
}
-
-
location ~ ^/bbs/(.*\.php)$ {
-
alias /home/www/php/aaabbs/$1;
-
include fastcgi.conf;
-
proxy_no_cache 1;
-
proxy_store off;
-
proxy_cache off;
-
tcp_nodelay on;
-
fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;
-
fastcgi_index index.php;
-
fastcgi_connect_timeout 200;
-
fastcgi_send_timeout 200;
-
fastcgi_read_timeout 200;
-
fastcgi_buffer_size 128k;
-
fastcgi_buffers 4 256k;
-
}
-
-
-
location ~ \.(php)$ {
-
# access_log /var/log/nginx/php.log main;
-
root /home/www/php/aaa;
-
include fastcgi.conf;
-
proxy_no_cache 1;
-
proxy_store off;
-
proxy_cache off;
-
tcp_nodelay on;
-
fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;
-
fastcgi_index index.php;
-
fastcgi_connect_timeout 200;
-
fastcgi_send_timeout 200;
-
fastcgi_read_timeout 200;
-
fastcgi_buffer_size 128k;
-
fastcgi_buffers 4 256k;
-
}
-
}
阅读(1165) | 评论(0) | 转发(0) |