Добрый день, есть лендинг который работает исправно на apache, нужно было его перекинуть на NGINX и я столкнулся с проблемой
настройки Apache2 (htaccess)
RewriteEngine On
ErrorDocument 404 /ru/404.html
RewriteCond %{THE_REQUEST} /index\.html? [NC]
RewriteRule ^(.*/)?index\.html?$ https://domen.com/$1 [R=301,L]
Index.php
<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: /ru/");
При переходе на
https://domen.com перекидывает на
https://domen.com/ru - Все ок
Настроил NGINX
server {
listen 80;
listen [::]:80;
server_name domen.com www.domen.com;
return 301 https://domen.com/$request_uri;
}
server {
listen 443 ssl;
listen [::]:443 ssl;
#root /srv/domen/landing/;
set $root_path /srv/domen/landing/public;
root $root_path;
index index.php
server_name domen.com;
gzip on;
gzip_disable "msie6";
gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript application/javascript;
gzip_comp_level 5;
ssl on;
ssl_certificate /etc/nginx/ssl/domen.com.crt;
ssl_certificate_key /etc/nginx/ssl/domen.com.key;
ssl_session_cache shared:SSL:1m;
ssl_session_timeout 10m;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers HIGH:SEED:!aNULL:!eNULL:!EXPORT:!DES:!RC4:!MD5:!PSK:!RSAPSK:!aDH:!aECDH:!EDH-DSS-DES-CBC3-SHA:!KRB5-DES-CBC3-SHA:!SRP;
ssl_prefer_server_ciphers on;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location ~* \.php$ {
try_files $uri = 404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php/php7.0-fpm.sock; # подключаем сокет php-fpm
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
location ~* ^.+\.(js|css|png|gif|svg|svgz|woff|woff2|jpg|jpeg|gif|ico)$ {
expires 7d;
add_header Cache-Control "public";
try_files $uri $uri/ =404;
}
location ~ /\.ht {
deny all;
}
}
При переходе на
https://domen.com выдает ошибку 403 и в логах
directory index of "/srv/domen/landing/public/" is forbidden
Если перейти по адресу
https://domen.com/ru все ок, сайт грузится, где я напортачил? Буду рад любой помощи, спасибо