+ 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;
+ }
+ }