Yes I made some tests but this is not always a suitable solution. If the server web-interface uses absolute path, proxy trick won't work...
For example, I succeed with transmission client but not with mediatomb.
The conf file used by the apache server is in the folder \etc. So it is this file that you must change.
Be careful, if you changed in the past the memory level in the setup menu, this file is overwritten when the NAS is booting. You must make your change in the file httpd.x according the memory level.
I advice you to add these line in these files :
- Code: Select all
#Proxy Pass configurations
Include /etc/proxy.conf
For example to redirect transmissionclient, you must add these lines
- Code: Select all
LoadModule proxy_module /usr/modules/mod_proxy.so
LoadModule proxy_http_module /usr/modules/mod_proxy_http.so
Redirect /transmissioncli /transmission/web/
<Location /transmission/ >
Options +Indexes +FollowSymLinks
ProxyPass http://localhost:9091/transmission/
ProxyPassReverse http://localhost:9091/transmission/
DirectoryIndex index.html
</Location>