Created
October 24, 2011 21:46
-
-
Save kkaefer/1310425 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 443; | |
server_name localhost; | |
access_log /var/log/nginx/tilestream-ui.access.log; | |
ssl on; | |
ssl_certificate /Users/kkaefer/Code/modules/tilestream-pro/certificates/server.cer; | |
ssl_certificate_key /Users/kkaefer/Code/modules/tilestream-pro/certificates/server.key; | |
location / { | |
proxy_pass http://127.0.0.1:80; | |
proxy_set_header X-HTTPS yes; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment