Created
May 15, 2014 21:18
-
-
Save adamrights/009b7979cf59ce52b18c to your computer and use it in GitHub Desktop.
This file contains hidden or 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
server { | |
listen 8888; | |
server_name localhost; | |
location / { | |
proxy_pass http://127.0.0.1:8890/; | |
proxy_redirect off; | |
client_max_body_size 10m; | |
client_body_buffer_size 128l; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment