Skip to content

Instantly share code, notes, and snippets.

View deyu260's full-sized avatar

Zeecen Volse deyu260

  • Shanghai, China
View GitHub Profile
@deyu260
deyu260 / nginx.conf
Created January 18, 2014 10:29 — forked from mimosz/nginx.conf
# 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;
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
import string
try:
import pycurl2 as pycurl
except:
import pycurl
import urllib