Skip to content

Instantly share code, notes, and snippets.

@theriverman
Created June 17, 2017 12:49
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 theriverman/000f42d9d2669cda10ff4a4ee7c3f793 to your computer and use it in GitHub Desktop.
Save theriverman/000f42d9d2669cda10ff4a4ee7c3f793 to your computer and use it in GitHub Desktop.
Transmission WebUI behind nginx proxy
server {
listen 80;
server_name torrent.domain.com;
location / { proxy_pass http://localhost:9091; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment