X-Git-Url: http://git.purplebirdman.com/proxy.git/blobdiff_plain/e29f041b4b7f8406b1057a15d81dcb3cf180656e..362462e61994aa85612c65099fcfb3e3b176facc:/proxy/nginx.conf diff --git a/proxy/nginx.conf b/proxy/nginx.conf index c7df093..0c5954b 100644 --- a/proxy/nginx.conf +++ b/proxy/nginx.conf @@ -7,6 +7,16 @@ events { http { ssl_password_file /etc/ssl/certs/passphrase.txt; + server { + listen 443 ssl; + server_name go.purplebirdman.com; + ssl_certificate /etc/ssl/certs/cert.pem; + ssl_certificate_key /etc/ssl/certs/key.pem; + location / { + proxy_pass http://go-web; + proxy_set_header Host $host; + } + } server { listen 443 ssl; server_name kanban.purplebirdman.com;