Skip to content

Instantly share code, notes, and snippets.

@rafaelrpbelo
Last active January 26, 2020 04:38
Show Gist options
  • Save rafaelrpbelo/ebb736bd17909496e6d5a948e227cd86 to your computer and use it in GitHub Desktop.
Save rafaelrpbelo/ebb736bd17909496e6d5a948e227cd86 to your computer and use it in GitHub Desktop.
Default vhost config from Dokku
server {
listen [::]:80;
listen 80;
server_name jevel.com.br;
access_log /var/log/nginx/jevel-flats-access.log;
error_log /var/log/nginx/jevel-flats-error.log;
location / {
gzip on;
gzip_min_length 1100;
gzip_buffers 4 32k;
gzip_types text/css text/javascript text/xml text/plain text/x-component application/javascript application/x-javascript application/json application/xml application/rss+xml font/true
type application/x-font-ttf font/opentype application/vnd.ms-fontobject image/svg+xml;
gzip_vary on;
gzip_comp_level 6;
proxy_pass http://jevel-flats-5000;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
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 /home/dokku/jevel-flats/nginx.conf.d/*.conf;
error_page 400 401 402 403 405 406 407 408 409 410 411 412 413 414 415 416 417 418 420 422 423 424 426 428 429 431 444 449 450 451 /400-error.html;
location /400-error.html {
root /var/lib/dokku/data/nginx-vhosts/dokku-errors;
internal;
}
error_page 404 /404-error.html;
location /404-error.html {
root /var/lib/dokku/data/nginx-vhosts/dokku-errors;
internal;
}
error_page 500 501 502 503 504 505 506 507 508 509 510 511 /500-error.html;
location /500-error.html {
root /var/lib/dokku/data/nginx-vhosts/dokku-errors;
internal;
}
}
upstream jevel-flats-5000 {
server 172.17.0.6:5000;
}
@dmitryrck
Copy link

That is very interesting (not to say wise): dokku uses the docker ip address instead of binding to localhost.

This way the machine will never have conflict with port :) (and because of that it is possible to "scale", it will be in the same host, but yet :P )

It is not possible of doing this manually (or using capistrano) because we will need to update nginx each time 🤔.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment