Transmission on port 80

Discussion of the Web Interface for Transmission, formerly known as Clutch. This applies to all version of Transmission
Post Reply
zike
Posts: 6
Joined: Thu Jan 31, 2013 10:44 am

Transmission on port 80

Post by zike »

Hi,

I would like to use Transmission on port 80, not on port 9091 (because of university's proxy for example...).
How can I do this ?

Thanks !
Have a good day
zike
Posts: 6
Joined: Thu Jan 31, 2013 10:44 am

Re: Transmission on port 80

Post by zike »

Sans titre.png
Sans titre.png (12.57 KiB) Viewed 7798 times
I tried something.
I have added this in my /etc/apache2/sites-available/default :

Code: Select all

ProxyResquests Off 
<Proxy *>
order allow,deny
allow from all
</Proxy>

ProxyPass /transmission http://localhost:9091/transmission/web
ProxyPassReverse /transmission http://loclahost:9091/transmission/web
but when I go on my website, I have this :
Sans titre.png
Sans titre.png (12.57 KiB) Viewed 7798 times
... so my style isn't active... I though it was because of the redirection but when I comment the line ProxyPassReverse it's always the same thing.
zike
Posts: 6
Joined: Thu Jan 31, 2013 10:44 am

Re: Transmission on port 80

Post by zike »

Thanks but i saw this post, i have tried but nothing has changed...
zike
Posts: 6
Joined: Thu Jan 31, 2013 10:44 am

Re: Transmission on port 80

Post by zike »

This is my /etc/apache2/sites-available/default

Code: Select all

<VirtualHost *:80>
	ServerAdmin webmaster@localhost

	DocumentRoot /home/server/www
	<Directory />
		Options FollowSymLinks
		AllowOverride All
	</Directory>
	<Directory /home/server/www>
		Options Indexes FollowSymLinks MultiViews
		AllowOverride All
		Order allow,deny
		allow from all
	</Directory>

	ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
	<Directory "/usr/lib/cgi-bin">
		AllowOverride None
		Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
		Order allow,deny
		Allow from all
	</Directory>

	ErrorLog ${APACHE_LOG_DIR}/error.log

	# Possible values include: debug, info, notice, warn, error, crit,
	# alert, emerg.
	LogLevel warn

	CustomLog ${APACHE_LOG_DIR}/access.log combined

       # TRANSMISSION
       ProxyRequests Off
      <Proxy *>
           Order allow,deny
           allow from all
     </Proxy>

     ProxyPass /transmission http://localhost:9091/transmission/
     ProxyPassReverse /transmission http://localhost:9091/transmission

</VirtualHost>
And when I load my web page I have now a "409 error".
zike
Posts: 6
Joined: Thu Jan 31, 2013 10:44 am

Re: Transmission on port 80

Post by zike »

Nobody can help me?
zike
Posts: 6
Joined: Thu Jan 31, 2013 10:44 am

Re: Transmission on port 80

Post by zike »

I have found my error...
I put my proxy settings in /etc/apache2/sites-available/default and not in the file /etc/apache2/mods-availables/proxy.conf.
So I put it in this file and it works.
Post Reply