Skip to content

Instantly share code, notes, and snippets.

View tyt2y3's full-sized avatar
🦀
Rustacean

Chris Tsang tyt2y3

🦀
Rustacean
View GitHub Profile
@joemccann
joemccann / nginx + node setup.md
Created October 25, 2010 02:06
Set up nginx as a reverse proxy to node.js.

The idea is to have nginx installed and node installed. I will extend this gist to include how to install those as well, but at the moment, the following assumes you have nginx 0.7.62 and node 0.2.3 installed on a Linux distro (I used Ubuntu).

In a nutshell,

  1. nginx is used to serve static files (css, js, images, etc.)
  2. node serves all the "dynamic" stuff.

So for example, www.foo.com request comes and your css, js, and images get served thru nginx while everything else (the request for say index.html or "/") gets served through node.

  1. nginx listens on port 80.
@kylexlau
kylexlau / picasa_up.py
Created July 10, 2009 14:55
upload photos to google picasa
#!/usr/bin/python
# upload photos to google picasa
import gdata.photos.service
import getpass
import socket
import glob
import sys
import os