Created
March 16, 2015 16:06
-
-
Save felixyz/872d0567e0d58d6e6aac to your computer and use it in GitHub Desktop.
dokku nginx config http + https
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 [::]:80; | |
listen 80; | |
server_name $NOSSL_SERVER_NAME; | |
location / { | |
proxy_pass http://$APP; | |
proxy_http_version 1.1; | |
proxy_set_header Upgrade \$http_upgrade; | |
proxy_set_header Connection "upgrade"; | |
proxy_set_header Host \$http_host; | |
proxy_set_header X-Forwarded-Proto \$scheme; | |
proxy_set_header X-Forwarded-For \$remote_addr; | |
proxy_set_header X-Forwarded-Port \$server_port; | |
proxy_set_header X-Request-Start \$msec; | |
} | |
include $DOKKU_ROOT/$APP/nginx.conf.d/*.conf; | |
} | |
server { | |
listen [::]:443 ssl spdy; | |
listen 443 ssl spdy; | |
server_name $SSL_SERVER_NAME; | |
$SSL_DIRECTIVES | |
keepalive_timeout 70; | |
add_header Alternate-Protocol 443:npn-spdy/2; | |
location / { | |
proxy_pass http://$APP; | |
proxy_http_version 1.1; | |
proxy_set_header Upgrade \$http_upgrade; | |
proxy_set_header Connection "upgrade"; | |
proxy_set_header Host \$http_host; | |
proxy_set_header X-Forwarded-Proto \$scheme; | |
proxy_set_header X-Forwarded-For \$remote_addr; | |
proxy_set_header X-Forwarded-Port \$server_port; | |
proxy_set_header X-Request-Start \$msec; | |
} | |
include $DOKKU_ROOT/$APP/nginx.conf.d/*.conf; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment