add scripts from dmzscripts repo to scripts

This commit is contained in:
2024-01-05 11:42:17 +01:00
parent d3e2cec3a7
commit 5e4f55af5b
10 changed files with 2256 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
server {
listen 443 ssl ;
listen [::]:443 ssl ;
index index.html index.htm index.nginx-debian.html;
server_name subdomain.krov.dmz.rs subdomain.krov.decentrala.org;
ssl_certificate /etc/letsencrypt/live/subdomain.krov.dmz.rs/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/subdomain.krov.dmz.rs/privkey.pem;
ssl_dhparam /etc/ssl/dhparam.pem;
ssl_protocols TLSv1.2 TLSv1.3;
ssl_ciphers HIGH:!aNULL:!MD5;
root /var/www/subdomainkrovdmzrs;
resolver 9.9.9.9;
}