Web Iterface in text only

Discussion of the Web Interface for Transmission, formerly known as Clutch. This applies to all version of Transmission
Post Reply
ThyssenKrupp
Posts: 1
Joined: Fri Jan 11, 2013 8:08 pm

Web Iterface in text only

Post by ThyssenKrupp »

Hello,

To begin sorry for my poor english. So I need help because i would a the web UI with apache redirection, I can log in the web UI but I think I have a probleme with Javascript, I have only text in the web page.

To help you I post a sreenshot.
Image

And the proxy

Code: Select all

<VirtualHost *:80>
	ServerAdmin webmaster@localhost

	<Proxy *>
	Order allow,deny
	Allow from all
	</Proxy>

	ProxyRequests Off
	ProxyPreserveHost On

	#Proxy Transmission
	ProxyPass /transmission http://127.0.0.1:9091/transmission/web/
	ProxyPassReverse /transmission http://127.0.0.1:9091/transmission/web/
	
	#Proxy Transmission
	ProxyPass /stream http://127.0.0.1:4040
	ProxyPassReverse /stream http://127.0.0.1:4040

	<IfModule expires_module>
		ExpiresActive On
		ExpiresByType image/gif A43200
		ExpiresByType image/png A43200
		ExpiresByType application/javascript A43200
	</IfModule>

	DocumentRoot /var/www
	<Directory />
		Options FollowSymLinks
		AllowOverride None
	</Directory>
	<Directory /var/www/>
		Options Indexes FollowSymLinks MultiViews
		AllowOverride None
		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
</VirtualHost>
killemov
Posts: 542
Joined: Sat Jul 31, 2010 5:04 pm

Re: Web Iterface in text only

Post by killemov »

This is not correct anyway:

Code: Select all

#Proxy Transmission
   ProxyPass /transmission http://127.0.0.1:9091/transmission/web/
   ProxyPassReverse /transmission http://127.0.0.1:9091/transmission/web/
It should be:

Code: Select all

#Proxy Transmission
   ProxyPass /transmission http://127.0.0.1:9091/transmission/
   ProxyPassReverse /transmission http://127.0.0.1:9091/transmission/
Post Reply