Skip to content

Instantly share code, notes, and snippets.

@Planeshifter
Created August 15, 2014 15:19
Show Gist options
  • Save Planeshifter/e77534e380c6b2672ac9 to your computer and use it in GitHub Desktop.
Save Planeshifter/e77534e380c6b2672ac9 to your computer and use it in GitHub Desktop.
server {
listen 80;
server_name philipp-burckhardt.com;
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $http_host;
proxy_pass http://127.0.0.1:2368;
}
location /wordnetVisualizer/ {
alias /var/www/wordnetVisualizer/;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment