Я получаю ошибку 403 в
2020/06/14 06:37:13 [error] 5033#5033: *44826 directory index of "/var/www/attendanceplus.com/" is forbidden, client: 54.149.161.1, server: carestry.com, request: "GET / HTTP/1.1", host: "carestry.com"
Мой /etc/nginx/sites-available/attendanceplus.com
выглядит так:
server {
listen 80 default_server;
listen [::]:80 default_server;
return 301 https://$server_name$request_uri;
root /var/www/html;
index.nginx-debian.html;
server_name carestry.com www.carestry.com;
location / {
add_header Cache-Control "private, no-store, no-cache";
try_files $uri $uri/ /index.html;
}
}
server {
listen 443 ssl;
listen [::]:443 ssl;
root /var/www/html;
index.nginx-debian.html;
server_name carestry.com www.carestry.com;
location / {
add_header Cache-Control "private, no-store, no-cache";
try_files $uri $uri/ /index.html;
}
ssl_certificate /etc/letsencrypt/live/carestry.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/carestry.com/privkey.pem;
}
Есть идеи, как я могу это исправить? Возможно, я не предоставляю всю необходимую информацию. Я не слишком разбираюсь в таких конфигах серверов.