Skip to content

Instantly share code, notes, and snippets.

@noodny
Created June 2, 2015 19:56
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 noodny/d0ce986cf4a5c7493eb1 to your computer and use it in GitHub Desktop.
Save noodny/d0ce986cf4a5c7493eb1 to your computer and use it in GitHub Desktop.
Sample nginx configuration template file used by Dokku
server {
listen [::]:80;
listen 80;
server_name $NOSSL_SERVER_NAME;
access_log /var/log/nginx/${APP}-access.log;
error_log /var/log/nginx/${APP}-error.log;
# set a custom header for requests
add_header X-Served-By www-ec2-01;
# set max POST body size
client_max_body_size 20M;
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