Skip to content

Instantly share code, notes, and snippets.

@bamiesking
Created December 8, 2020 18:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save bamiesking/c47b3ff6b27fc099a9f1c58a2f6c4839 to your computer and use it in GitHub Desktop.
Save bamiesking/c47b3ff6b27fc099a9f1c58a2f6c4839 to your computer and use it in GitHub Desktop.
nginx config for serving dynmap at a custom url
server {
listen 80;
server_name example.com;
location /survival/ {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_read_timeout 6;
proxy_pass http://dynmap_ip:port/;
break;
}
location / {
return 301 $scheme://$host/survival;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment