This commit is contained in:
2026-01-19 13:17:06 +01:00
parent ea6d872a77
commit ac194fbfc4
7 changed files with 2 additions and 2 deletions

13
files/nginx/default.conf Normal file
View File

@@ -0,0 +1,13 @@
server {
listen 443 default_server;
server_name _;
return 404;
}
server {
listen 80 default_server;
server_name _;
return 301 https://$host$request_uri;
}