Search found 7 matches
- Mon Jun 28, 2010 7:28 am
- Forum: Web Interface
- Topic: how to redirect Transmission 1.34 to port 80?
- Replies: 28
- Views: 174426
Re: how to redirect Transmission 1.34 to port 80?
I'm trying to configure Apache, my config is:
ProxyPass /transmission http://localhost:8080/transmission
ProxyPassReverse /transmission http://localhost:8080/transmission
It asks for password, i can login, but then it gives error:
409: Conflict
Did this hapended with any of you ?
This ...
- Wed Jan 27, 2010 11:12 pm
- Forum: Web Interface
- Topic: Apache and Transmission Daemon
- Replies: 6
- Views: 18574
Re: Apache and Transmission Daemon
Yeah, just add a Redirect line.
Something like
Redirect permanent / /transmission/web
should do the trick.
See also http://httpd.apache.org/docs/2.2/mod/mod_alias.html#redirect
I'm pretty sure that the transmission web interface needs to be at /transmission/web and /transmission/api to work ...
Something like
Redirect permanent / /transmission/web
should do the trick.
See also http://httpd.apache.org/docs/2.2/mod/mod_alias.html#redirect
I'm pretty sure that the transmission web interface needs to be at /transmission/web and /transmission/api to work ...
- Tue Jan 26, 2010 3:53 pm
- Forum: Web Interface
- Topic: Apache and Transmission Daemon
- Replies: 6
- Views: 18574
Re: Apache and Transmission Daemon
I don't think you want that RewiteRule line in there.
Remove it and I think it should work if you visit http://transmission.my_domain.fr/transmission/web
Remove it and I think it should work if you visit http://transmission.my_domain.fr/transmission/web
- Sun May 10, 2009 2:44 pm
- Forum: Web Interface
- Topic: how to redirect Transmission 1.34 to port 80?
- Replies: 28
- Views: 174426
Re: how to redirect Transmission 1.34 to port 80?
Try accessing http://services.mydomain.com/transmission/web rather than http://services.mydomain.com/transmission
Added this note to the instructions above.
Added this note to the instructions above.
- Sat Dec 06, 2008 12:07 pm
- Forum: Web Interface
- Topic: how to redirect Transmission 1.34 to port 80?
- Replies: 28
- Views: 174426
Re: how to redirect Transmission 1.34 to port 80?
Edited my instructions above to include loading the necessary modules.
Thanks to Abe on IRC.
Thanks to Abe on IRC.
- Thu Nov 27, 2008 8:42 pm
- Forum: Web Interface
- Topic: how to redirect Transmission 1.34 to port 80?
- Replies: 28
- Views: 174426
Re: how to redirect Transmission 1.34 to port 80?
ProxyPass /transmission http://localhost:9091/transmission/web/
ProxyPassReverse /transmission http://localhost:9091/transmission/web/
That should be
ProxyPass /transmission http://localhost:9091/transmission
ProxyPassReverse /transmission http://localhost:9091/transmission
This is ...
- Fri Oct 10, 2008 1:38 am
- Forum: Web Interface
- Topic: how to redirect Transmission 1.34 to port 80?
- Replies: 28
- Views: 174426
Re: how to redirect Transmission 1.34 to port 80?
I've just spent a while finding out how to do this.
If you have transmission running on the same computer as Apache, enable the following modules:
mod_proxy
mod_proxy_http
Ubuntu and Debian users probably just need to run
a2enmod proxy
a2enmod proxy_http
Then add the following to your apache ...
If you have transmission running on the same computer as Apache, enable the following modules:
mod_proxy
mod_proxy_http
Ubuntu and Debian users probably just need to run
a2enmod proxy
a2enmod proxy_http
Then add the following to your apache ...