Skip to content

Instantly share code, notes, and snippets.

View fizzwu's full-sized avatar

Fizz fizzwu

  • NextStage
  • Suzhou, China
View GitHub Profile
@mimosz
mimosz / nginx.conf
Created August 31, 2012 01:59
nginx + unicorn + padrino on ubuntu
# sudo ln -s ~/nginx.conf unicorn.conf
upstream app_server {
server unix:/tmp/unicorn_padrino.sock fail_timeout=0;
}
server {
listen 80;
charset utf-8;
server_name db.innshine.com;