Skip to content

Instantly share code, notes, and snippets.

View imdjh's full-sized avatar

-.-. imdjh

View GitHub Profile
@imdjh
imdjh / nginx_http.config
Last active February 17, 2017 05:08 — forked from HaiwenZhang/nginx_http.config
two port nginx config
events {
worker_connections 4096; ## Default: 1024
}
http {
upstream old_rails_puma {
server old_app:3000;
}
upstream new_rails_puma {