diff --git a/Nginx/Server Blocks/cshd-logs.libraryofcode.org.conf b/Nginx/Server Blocks/cshd-logs.libraryofcode.org.conf new file mode 100644 index 0000000..0e37dff --- /dev/null +++ b/Nginx/Server Blocks/cshd-logs.libraryofcode.org.conf @@ -0,0 +1,12 @@ +server { + listen 443 ssl http2; + listen [::]:443 ssl http2; + server_name cshd-logs.libraryofcode.org; + + ssl_certificate /etc/nginx/ssl/org.chain.crt; + ssl_certificate_key /etc/nginx/ssl/org.key.pem; + + location / { + proxy_pass http://localhost:5479; + } +} diff --git a/Nginx/Server Blocks/cshd.ins.conf b/Nginx/Server Blocks/cshd.ins.conf deleted file mode 100644 index 6fecbc3..0000000 --- a/Nginx/Server Blocks/cshd.ins.conf +++ /dev/null @@ -1,12 +0,0 @@ -server { - listen 10.8.0.1:443 ssl http2; - #listen [::]:443 ssl http2; - server_name cshd.ins; - - ssl_certificate /etc/nginx/ssl/cshd-ins.chain.crt; - ssl_certificate_key /etc/nginx/ssl/cshd-ins.key.pem; - - location / { - proxy_pass http://10.8.0.1:5479; - } -}