Created
May 29, 2009 18:42
-
-
Save inklesspen/120130 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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