Skip to content

Instantly share code, notes, and snippets.

@kkaefer
Created October 24, 2011 21:46
Show Gist options
  • Save kkaefer/1310425 to your computer and use it in GitHub Desktop.
Save kkaefer/1310425 to your computer and use it in GitHub Desktop.
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