mirror of
https://github.com/NAStools/zerotierone.git
synced 2024-11-13 17:10:35 -08:00
22 lines
607 B
Plaintext
22 lines
607 B
Plaintext
<IfModule !mod_proxy.c>
|
|
LoadModule proxy_module /usr/lib/apache2/modules/mod_proxy.so
|
|
</IfModule>
|
|
<IfModule !mod_proxy_http.c>
|
|
LoadModule proxy_http_module /usr/lib/apache2/modules/mod_proxy_http.so
|
|
</IfModule>
|
|
|
|
ScriptAlias /apps/nastools-zerotier-one/cgi /apps/nastools-zerotier-one/cgi
|
|
|
|
<Location /apps/nastools-zerotier-one>
|
|
Include "/etc/frontview/apache/Admin_Auth.conf"
|
|
</Location>
|
|
|
|
<IfModule mod_proxy.c>
|
|
<IfModule mod_proxy_http.c>
|
|
<Location /apps/nastools-zerotier-one/ui/>
|
|
ProxyPass http://localhost:9993/
|
|
ProxyPassReverse http://localhost:9993/
|
|
</Location>
|
|
</IfModule>
|
|
</IfModule>
|