Skip to content

Instantly share code, notes, and snippets.

@Bemmu
Created July 21, 2017 08:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Bemmu/99938574151c3efa282730fa662e85dc to your computer and use it in GitHub Desktop.
Save Bemmu/99938574151c3efa282730fa662e85dc to your computer and use it in GitHub Desktop.
plikd nginx config
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