Skip to content

Instantly share code, notes, and snippets.

@inklesspen
Created May 29, 2009 18:42
Show Gist options
  • Save inklesspen/120130 to your computer and use it in GitHub Desktop.
Save inklesspen/120130 to your computer and use it in GitHub Desktop.
# nginx config
server {
listen 80;
server_name ffmlsearch.inklesspen.com;
location / {
proxy_pass http://127.0.0.1:5020/;
}
}
# in production.ini (only relevant part)
[server:main]
use = egg:Paste#http
host = 127.0.0.1
port = 5020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment