First of all, I beg you to apologize my poor english :S
I write here because I have some issues with the correct use of Apache to access to my Web interface Transmission...
After reading some subjects here, I copy/paste and edit my Apache conf like that :
Code: Select all
<VirtualHost *:80>
RewriteEngine on
ServerName transmission.my_domain.fr
RewriteRule /transmission[/]?$ /transmission/web [R=permanent]
# Forward all requests for /transmission to transmission-daemon
ProxyPass /transmission http://127.0.0.1:9091/transmission
ProxyPassReverse /transmission http://127.0.0.1:9091/transmission
<Location /transmission>
Order Allow,Deny
Allow from All
# Make pictures, scripts and styling client-cacheable
<IfModule expires_module>
ExpiresActive On
ExpiresByType image/gif A43200
ExpiresByType image/png A43200
ExpiresByType application/javascript A43200
ExpiresByType text/css A43200
</IfModule>
</Location>
</VirtualHost>
Is anybody to help me ? Thank you for reading.
Regards,
Phil.