1
0

initial commit

This commit is contained in:
2025-06-05 11:01:19 +03:00
commit 48f13f97a3
297 changed files with 7136 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
server {
listen 8443 ssl;
server_name .example.org;
ssl_certificate tls/example.org.chain.crt;
ssl_certificate_key tls/example.org.pem;
root static/example.org;
}
server {
listen 8443 ssl;
server_name www.example.org;
ssl_certificate tls/www.example.org.chain.crt;
ssl_certificate_key tls/www.example.org.pem;
root static/www.example.org;
}
## optional: cut-off server
server {
listen 8443 ssl default_server bind deferred;
server_name _;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3;
## reject connections early
ssl_reject_handshake on;
}