Skip to content

Instantly share code, notes, and snippets.

View will118's full-sized avatar

Will Bartlett will118

  • London
View GitHub Profile
@will118
will118 / nginxconf
Created November 2, 2013 14:39
nginx conf for Rails/Puma
upstream app_server {
server unix:///var/run/my_app.sock;
}
server {
listen 80;
root /home/epldb/public;
server_name _;
index index.htm index.html;
location / {