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