Search found 3 matches

by san
Wed Mar 19, 2014 12:01 am
Forum: Web Interface
Topic: how to redirect Transmission 1.34 to port 80?
Replies: 28
Views: 174490

Re: how to redirect Transmission 1.34 to port 80?

Found better way than in my old, old, old post (i know it's quite late to bring it back up to live, but...).

One-file solution transmission.conf for apache2 (put it into /etc/apache2/conf.d for Ubuntu):
ProxyRequests Off

<Proxy *>
Order Allow,Deny
Allow from all
</Proxy>

<VirtualHost *:80 ...
by san
Fri Dec 21, 2012 1:28 am
Forum: Web Interface
Topic: how to redirect Transmission 1.34 to port 80?
Replies: 28
Views: 174490

Re: how to redirect Transmission 1.34 to port 80?

everything is well explained here: http://floss.zoomquiet.org/data/20090926124615/index.html
(unluckily i found it too late)

i made my own conf and it looks like:
Alias /transmission /home/san/www/transmission

ProxyRequests Off
ProxyPreserveHost On
RewriteEngine on

# Redirect requests to ...
by san
Sun Oct 09, 2011 10:59 pm
Forum: Web Interface
Topic: how to redirect Transmission 1.34 to port 80?
Replies: 28
Views: 174490

Re: how to redirect Transmission 1.34 to port 80?

san@serwer:~/www/transmission$ cat .htaccess
RewriteEngine On
RewriteOptions Inherit

RewriteRule (.*) http://localhost:9091/transmission/$1 [P]

Works for me if i go to: http://mypage.com/transmission/web/
Does not work for http://mypage.com/transmission/

san@serwer:~/www/transmission ...