Initial commit

This commit is contained in:
2026-06-24 17:29:12 -04:00
commit 72b96c06a4
15 changed files with 470 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
# Redirect all HTTP requests to HTTPS via a 301 response
return 301 https://$host$request_uri;
}
server {
listen 443 ssl http2 default_server;
listen [::]:443 ssl http2 default_server;
server_name _;
ssl_certificate {{ nginx_ssl_certificate }};
ssl_certificate_key {{ nginx_ssl_certificate_key }};
include {{ nginx_snippets_path }}/ssl-params.conf;
return 404;
}