Created
August 1, 2016 11:15
-
-
Save ccapndave/9b7b48bf7d50e4f26564acc90b7a5ce7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 6984 ssl; | |
server_name myserver.net; | |
ssl_certificate /etc/sslmate/myserver.net.chained.crt; | |
ssl_certificate_key /etc/sslmate/myserver.net.key; | |
location / { | |
proxy_set_header Access-Control-Request-Headers ""; | |
proxy_pass http://127.0.0.1:5984; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment