From 663e8a2db6cdc54928773ba7d468cce72da94c19 Mon Sep 17 00:00:00 2001 From: Matthew R Date: Tue, 26 Jul 2022 01:57:25 -0400 Subject: [PATCH] add mc-map server --- Nginx/Server Blocks/mc-map.libraryofcode.org.conf | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Nginx/Server Blocks/mc-map.libraryofcode.org.conf diff --git a/Nginx/Server Blocks/mc-map.libraryofcode.org.conf b/Nginx/Server Blocks/mc-map.libraryofcode.org.conf new file mode 100644 index 0000000..7d3a809 --- /dev/null +++ b/Nginx/Server Blocks/mc-map.libraryofcode.org.conf @@ -0,0 +1,12 @@ +server { + listen 443 ssl http2; + listen [::]:443 ssl http2; + server_name mc-map.libraryofcode.org; + + ssl_certificate /etc/nginx/ssl/org.chain.crt; + ssl_certificate_key /etc/nginx/ssl/org.key.pem; + + location / { + proxy_pass http://localhost:8123; + } +}