nginx-Konfiguration:
server {
listen 443;
server_name localhost;
ssl on;
ssl_certificate /home/attolee/sslkey/example.crt;
ssl_certificate_key /home/attolee/sslkey/example.key;
ssl_session_timeout 5m;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers ALL:!ADH:!EXPORT56:-RC4+RSA:+HIGH:+MEDIUM:!EXP;
ssl_prefer_server_ciphers on;
location / {
root /home/a;
index index.html;
}
location /b/ {
root /home/a;
index b.html;
}
}
Ich möchte
https://host/ kann auf /home/a/index.html zugreifen,
https://host/b kann auf /home/a/b/b.html zugreifen,
Jetzt 1 ist erfolgreich, 2 ist nicht erfolgreich, 403 Verboten, darf ich fragen, was das Problem mit der Konfiguration ist?
Detailliertere Problembeschreibung: 403 verboten von Nginx in Ubuntu
root
需要x
权限:上面两位的回答都是错的!
我来给你讲讲吧:
下面那个location应该改成
location /b/ {
把两个location顺序反过来
另外根据你这个配置 应该是
https://host/b/
能否访问到/home/a/b/b.html