Hi folks,
Strange issue with a friend’s installation and shell in a box.
if i hit:
https://serverip/username.console
I get “Service Unavailable”
I opened port 4224
When I hit
serverip:4224 I get the login screen.
I did a cat of /etc/apache2/sites-enabled/user.console.conf
LoadModule proxy_module /usr/lib/apache2/modules/mod_proxy.so
LoadModule proxy_http_module /usr/lib/apache2/modules/mod_proxy_http.so
ProxyRequests Off
<Proxy *>
AddDefaultCharset Off
Order deny,allow
Allow from all
AuthType Digest
AuthName "rutorrent"
AuthUserFile '/etc/htpasswd'
Require valid-user
</Proxy>
ProxyPass /user.console http://192.168.0.13:4224
ProxyPassReverse /user.console http://192.168.0.13:4224
Am I missing something?
(Oh, i’ve also tried removing and reinsatlling )