diff options
author | Jonas Smedegaard <dr@jones.dk> | 2018-12-29 18:04:33 +0100 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2018-12-29 18:04:33 +0100 |
commit | f178bb01838689e977f6fce7a2f9f10c9938930e (patch) | |
tree | 4deef88e61d9b1dbfc298b972024f5e16f4d1079 /apache2/conf-available | |
parent | 58d2868fa716382ed281e7a7e710416b091455c3 (diff) |
Improve netdata snippet(s).
Diffstat (limited to 'apache2/conf-available')
-rw-r--r-- | apache2/conf-available/local-netdata.conf | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/apache2/conf-available/local-netdata.conf b/apache2/conf-available/local-netdata.conf deleted file mode 100644 index bd3a6ef..0000000 --- a/apache2/conf-available/local-netdata.conf +++ /dev/null @@ -1,56 +0,0 @@ -# Apache2 snippet to proxy netdata service -# -# example uses: -# -#<VirtualHost *:80> -# ServerName simple.example.org -# -# Include conf-available/local-netdata.conf -#</VirtualHost> -# -#<VirtualHost *:443> -# ServerName complex.example.org -# -# Define _NETDATA_SOCKET /var/lib/netdata/netdata.socket -# -# DefineExternalAuth pwauth pipe /usr/sbin/pwauth -# <Location ${_NETDATA_PREFIX/> -# AuthType Basic -# AuthName "Netdata service access" -# AuthBasicProvider external -# AuthExternal pwauth -# AllowOverride None -# Require valid-user -# </Location> -# -# Include conf-available/local-netdata.conf -# -# UnDefine _NETDATA_SOCKET -# UnDefine _NETDATA_PORT -# UnDefine _NETDATA_PREFIX -#</VirtualHost> - -# Netdata port to proxy into (fake, if Unix socket also provided) -<IfDefine !_NETDATA_PORT> - Define _NETDATA_PORT 19999 -</IfDefine> - -# path prefix -<IfDefine !_NETDATA_PREFIX> - Define _NETDATA_PREFIX /netdata -</IfDefine> - -<IfDefine _NETDATA_SOCKET> - <Location ${_NETDATA_PREFIX/> - ProxyPass unix:${_NETDATA_SOCKET}|http://localhost:${_NETDATA_PORT}/ connectiontimeout=5 timeout=30 keepalive=on - ProxyPassReverse unix:${_NETDATA_SOCKET}|http://localhost:${_NETDATA_PORT}/ - </Location> -</IfDefine> -<IfDefine !_NETDATA_SOCKET> - <Location ${_NETDATA_PREFIX/> - ProxyPass http://localhost:${_NETDATA_PORT}/ connectiontimeout=5 timeout=30 keepalive=on - ProxyPassReverse http://localhost:${_NETDATA_PORT}/ - </Location> -</IfDefine> - -RedirectMatch permanent ${_NETDATA_PREFIX} ${_NETDATA_PREFIX}/ |