a) Do you recommend performing a regular "yum update"? Or should we just simply leave package versions as they were installed?
b) Apache. Are there any known issues regarding mod_proxy with Amahi? I've got SABnzbd installed and running fine, however, I'm trying to hide it behind an Apache proxy but for some reason or another Apache doesn't seem to want to handle regular proxy directives. I have 3 other boxes running Apache using the same proxy configuration and it works fine.
c) Is there a way (via the UI) to disable samba/shares? I have all of my files stored on a separate OpenFiler NAS shared to Amahi via NFS which is all working fine. For the time being, I've disabled SMB via console; just wanted to know if there was a preferred way.
More info on the proxy:
Note: I can access the SABnzbd interface flawlessy via http://hda:8080/sabnzbd
Code: Select all
[root@localhost ~]# telnet localhost 8080
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
^]
telnet> quit
Connection closed.
Code: Select all
<Location /sabnzbd>
Order deny,allow
Deny from all
Allow from all
ProxyPass http://localhost:8080/sabnzbd
ProxyPassReverse http://localhost:8080/sabnzbd
</Location>
Code: Select all
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
LoadModule proxy_http_module modules/mod_proxy_http.so
LoadModule proxy_connect_module modules/mod_proxy_connect.so