mirror of
https://github.com/didyouexpectthat/zerotierone.git
synced 2025-03-12 04:35:51 -07: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>
|