I’ve setup Netdata and it’s working fine. I can access it using http://mydomain.com:19999. However, I’d like to enable reverse proxy and use the default server authentication, similar to how it’s done for plexpy.
I copied plexpy’s .conf file and edited it according to what I think is required for Netdata. This is what the /etc/apache2/sites-enabled/netdata.conf file looks like:
<Location /netdata>
ProxyPass http://localhost:19999/netdata
ProxyPassReverse http://localhost:19999/netdata
AuthType Digest
AuthName "rutorrent"
AuthUserFile '/etc/htpasswd'
Require user kamos
</Location>
When I restart apache2 and load http://mydomain.com/netdata it gives me the following error:
File does not exist, or is not accessible: /usr/share/netdata/web/netdata
I’ve tried the Netdata guide to Running behind apache but that gave me a 404 error.
Please could you offer some assistance.