hey,
i got an email, system was updated to 1.8.12…
today i noticed 1 domain isnt working anymore (the subdomain mail.XXX.net is still working).
when iam trying to connect to my domain i always got the error “file not found” , sometimes browser shows redirecting error before the the not found thing…
i checked all nginx stuff and the template i created for this domain. Everything seems to be oke. Cant find any usefull stuff in logs…
Anybody could help?
here the template, was wokring flawlessy before update
server {
listen 185.87.21.89:80;
server_name chiptronix.net www.chiptronix.net;
root /home/chiptronix/web/chiptronix.net/public_html/chiptronix.net/public;
add_header X-Frame-Options "SAMEORIGIN";
add_header X-XSS-Protection "1; mode=block";
add_header X-Content-Type-Options "nosniff";
index index.html index.htm index.php;
charset utf-8;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }
error_page 404 /index.php;
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
include fastcgi_params;
}
location ~ /\.(?!well-known).* {
deny all;
}
}