Created
July 21, 2017 08:21
-
-
Save Bemmu/99938574151c3efa282730fa662e85dc to your computer and use it in GitHub Desktop.
plikd nginx config
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
http { | |
server { | |
error_log /tmp/nginx-error-8001.log; | |
access_log /tmp/nginx-access-8001.log; | |
listen 8001; | |
location ~ /plik(/?.*) { | |
proxy_pass http://localhost:8080/; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment