🔨」 fix: should be good to go

This commit is contained in:
2025-08-27 17:41:55 +02:00
parent 0c82c6441f
commit 5ff0fe7bac
4 changed files with 33 additions and 38 deletions

View File

@ -4,6 +4,12 @@ server {
listen 443 ssl;
ssl_certificate /etc/nginx/certs/fullchain.pem;
ssl_certificate_key /etc/nginx/certs/privkey.pem;
ssl_protocols TLSv1.2 TLSv1.3;
ssl_ciphers HIGH:!aNULL:!MD5;
modsecurity on;
add_header X-Frame-Options "SAMEORIGIN" always;
@ -40,6 +46,12 @@ server {
}
}
server {
listen 80;
server_name example.com;
return 301 https://$host$request_uri;
}
server {
listen 8080;
location /nginx_status {