Skip to content

Instantly share code, notes, and snippets.

@bendytree
Created October 22, 2015 20:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bendytree/72bed00ee0499c7fd76f to your computer and use it in GitHub Desktop.
Save bendytree/72bed00ee0499c7fd76f to your computer and use it in GitHub Desktop.
NGINX Config template for Dokku
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;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment