mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-04-15 09:51:21 +00:00
- Disabled login using username and password. Signed-off-by: Joseph Nuthalapati <njoseph@thoughtworks.com> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
20 lines
643 B
Plaintext
20 lines
643 B
Plaintext
##
|
|
## On all sites, provide Transmission on a default path: /transmission
|
|
##
|
|
## Requires the following Apache modules to be enabled:
|
|
## mod_headers
|
|
## mod_proxy
|
|
## mod_proxy_http
|
|
##
|
|
<Location /transmission>
|
|
ProxyPass http://localhost:9091/transmission
|
|
Include includes/freedombox-single-sign-on.conf
|
|
<IfModule mod_auth_pubtkt.c>
|
|
TKTAuthToken "admin" "bit-torrent"
|
|
</IfModule>
|
|
## Send the scheme from user's request to enable Transmission to
|
|
## redirect URLs, set cookies, set absolute URLs (if any)
|
|
## properly.
|
|
RequestHeader set X-Forwarded-Proto 'https' env=HTTPS
|
|
</Location>
|