Конфиг:
server {
server_name rates.test www.rates.test;
# listen *:443 default_server;
root /var/www/rates/backend/web;
index index.php;
charset utf-8;
client_max_body_size 20M;
access_log /var/log/nginx/rates.test.access.log;
error_log /var/log/nginx/rates.test.error.log;
location / {
# Redirect everything that isn't a real file to index.php
try_files $uri $uri/ /index.php$is_args$args;
}
# uncomment to avoid processing of calls to non-existing static files by Yii
location ~ \.(js|css|png|jpg|gif|swf|ico|pdf|mov|fla|zip|rar)$ {
try_files $uri =404;
}
location ~ \.php$ {
add_header X-Frame-Options $x_frame_options;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
try_files $uri =404;
}
}
Суть проблемы: при запросе
https://rates.test выдает 403 ошибку. Такого адреса сайта разумеется не существует, он прописан как виртуальный хост (или как это правильнее выразить). На локальной машине в хостах я прописал адрес сервера, переход осуществляется туда, куда надо.
В конфиге ошибок не найдено, проверка прошла успешно, nginx я перезапустил.
Файл index.php реально существует и корректный.
С правами и владельцем все нормально.
Мне открыт только 443 порт (https), может c этим связана ошибка?