From d648232d38f4055f023e0ff6ea5ec89317b4270f Mon Sep 17 00:00:00 2001 From: Matthew Date: Fri, 21 Mar 2025 15:27:37 -0400 Subject: [PATCH] pushes --- Nginx/Server Blocks/smm.libraryofcode.org.conf | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Nginx/Server Blocks/smm.libraryofcode.org.conf diff --git a/Nginx/Server Blocks/smm.libraryofcode.org.conf b/Nginx/Server Blocks/smm.libraryofcode.org.conf new file mode 100644 index 0000000..3b8ade6 --- /dev/null +++ b/Nginx/Server Blocks/smm.libraryofcode.org.conf @@ -0,0 +1,13 @@ +server { + listen 443 ssl http2; + listen [::]:443 ssl http2; + server_name smm.libraryofcode.org; + + ssl_certificate /etc/nginx/ssl/org.chain.crt; + ssl_certificate_key /etc/nginx/ssl/org.key.pem; + + #limit_req zone=one burst=15; + location / { + proxy_pass http://localhost:8080; + } +}