我需要一些帮助来配置nginx以从其他文件夹加载文件。这是我的配置:
index index.php;
server {
server_name domain.com;
root /www/domain.com/www/;
location / {
try_files $uri $uri/ /php_www/index.php;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index /php_www/index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_script_name;
include /etc/nginx/fastcgi_params;
}
error_page 404 /404.html;
error_log /var/log/nginx/error.log;
}
问题是/ php_www /不在nginx中定义的根目录内。
我有4个不同的文件夹,我需要这样做,这是我的文件夹结构:
/www/domain.com/www/
/www/domain.com/php_www/
/www/domain.com/content1/
/www/domain.com/content2/
我要做的是当访问者访问domain.com/page1/content1/
时,我想从content1文件夹中加载内容,例如。这样做的原因是我有几个带有单独回购的git项目...这将使我能够将网站的某些区域推向生产,而不会影响其他任何事情。我也不想在/ www文件夹中访问我的所有文件/内容,因此网址不能被暴力攻击,寻找内容。
希望这是有道理的!
location ^~ / {
root /www/domain.com/php_www/;
try_files $uri $uri/ /index.php;
location ~* \.(?:php|html)$ {
try_files $uri =404;
fastcgi_pass 127.0.0.1:9000;
include /etc/nginx/fastcgi_params;
}
}