我正在尝试使用子文件夹来包含服务器上的 Web 应用程序。例如:example.com/netdata ===> Netdata 监控 example.com/passbolt ====> 密码管理器等。
为了使事情正常进行,我使用了以下配置:
#Passbolt
server {
listen 80 default_server;
listen [::]:80 default_server;
listen 443 ssl default_server;
listen [::]:443 ssl default_server;
ssl_certificate /etc/nginx/ssl/cert.pem;
ssl_certificate_key /etc/nginx/ssl/key.pem;
allow all;
root /var/www/html/;
server_name passbolt.local;
location /passbolt/ {
alias /var/www/html/passbolt/app/webroot/;
try_files $uri $uri/ /index.php?$args;
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php5-fpm.sock;
}
}
}
但我总是收到 403 禁止错误,因此我检查了每个文件的权限,但所有这些文件都归 www-data 所有,而 www-data 是我的 nginx 服务器的用户。
我在 Debian 8 上。
有人能帮助我吗?
编辑 1:在日志中我收到此错误:
2017/04/24 16:07:08 [error] 28301#0: *2 directory index of "/var/www/html/passbolt/app/webroot/" is forbidden, client: 192.168.122.1, server: passbolt.local, request: "GET /passbolt/ HTTP/1.1", host: "passbolt.local"
答案1
添加此内容:
location / {
index index.htm index.html index.php index.py index.cgi index.sh;
}
答案2
好的,我找到了解决方案。我的应用程序正在使用 cakephp,使用此框架,您需要处理 URL 重写和其他类似的事情。
以下是我在 Nginx 中为使事情正常运行所做的配置:
#Passbolt
server {
listen 80 default_server;
listen [::]:80 default_server;
listen 443 ssl default_server;
listen [::]:443 ssl default_server;
ssl_certificate /etc/nginx/ssl/cert.pem;
ssl_certificate_key /etc/nginx/ssl/key.pem;
root /var/www/html/;
server_name passbolt.local;
location /passbolt {
if (-f $request_filename) {
break;
}
# Avoid recursivity
if ($request_uri ~ /webroot/index.php) {
break;
}
rewrite ^/passbolt$ /passbolt/ permanent;
rewrite ^/passbolt/app/webroot/(.*) /passbolt/app/webroot/index.php?url=$1 last;
rewrite ^/passbolt/(.*)$ /passbolt/app/webroot/$1 last;
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}
}
非常感谢你的帮助!