Created
June 17, 2017 12:49
-
-
Save theriverman/000f42d9d2669cda10ff4a4ee7c3f793 to your computer and use it in GitHub Desktop.
Transmission WebUI behind nginx proxy
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
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