update folder

This commit is contained in:
Evgeniy
2025-02-03 11:31:55 +03:00
parent 66ab209d22
commit 1419567a44
64 changed files with 502 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
server {
listen 80 default_server;
location /.well-known/acme-challenge {
root /usr/share/nginx/html;
}
location / {
return 301 https://$host$request_uri;
}
}
server {
listen 443 ssl default_server;
ssl_certificate /etc/nginx/ssl/selfsigned.pem;
ssl_certificate_key /etc/nginx/ssl/selfsigned.key;
server_tokens off;
location / {
return 444;
}
}