mirror of https://github.com/Aidaho12/haproxy-wi
parent
01105673e8
commit
42a683ce0b
19
README.md
19
README.md
|
@ -89,7 +89,24 @@ For Apache do virtualhost with cgi-bin. Like this:
|
||||||
Allow from all
|
Allow from all
|
||||||
</Directory>
|
</Directory>
|
||||||
|
|
||||||
<FilesMatch "\.config$">
|
<Directory /var/www/haproxy-wi/app/certs>
|
||||||
|
Options +ExecCGI -Indexes +MultiViews
|
||||||
|
Order Deny,Allow
|
||||||
|
Deny from all
|
||||||
|
</Directory>
|
||||||
|
|
||||||
|
<Directory /var/www/haproxy-wi/keys>
|
||||||
|
Options +ExecCGI -Indexes +MultiViews
|
||||||
|
Order Deny,Allow
|
||||||
|
Deny from all
|
||||||
|
</Directory>
|
||||||
|
|
||||||
|
<FilesMatch "\.cfg$">
|
||||||
|
Order Deny,Allow
|
||||||
|
Deny from all
|
||||||
|
</FilesMatch>
|
||||||
|
|
||||||
|
<FilesMatch "\.db$">
|
||||||
Order Deny,Allow
|
Order Deny,Allow
|
||||||
Deny from all
|
Deny from all
|
||||||
</FilesMatch>
|
</FilesMatch>
|
||||||
|
|
|
@ -15,9 +15,9 @@
|
||||||
<link href="/inc/vertical_scrol/custom_scrollbar.css" rel="stylesheet">
|
<link href="/inc/vertical_scrol/custom_scrollbar.css" rel="stylesheet">
|
||||||
<link href="/inc/style.css" rel="stylesheet">
|
<link href="/inc/style.css" rel="stylesheet">
|
||||||
<link href="/inc/nprogress.css" rel="stylesheet">
|
<link href="/inc/nprogress.css" rel="stylesheet">
|
||||||
<link rel="stylesheet" href="/inc/jquery-ui.css">
|
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
|
||||||
<script src="/inc/jquery-1.12.4.js"></script>
|
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
|
||||||
<script src="/inc/jquery-ui.js"></script>
|
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
|
||||||
<script src="/inc/js-cookie.js"></script>
|
<script src="/inc/js-cookie.js"></script>
|
||||||
<script src="/inc/script.js"></script>
|
<script src="/inc/script.js"></script>
|
||||||
<script src="/inc/nprogress.js"></script>
|
<script src="/inc/nprogress.js"></script>
|
||||||
|
@ -115,7 +115,7 @@
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
<div class="copyright-menu">
|
<div class="copyright-menu">
|
||||||
<a href="https://github.com/aidaho12/haproxy-wi/" title="Github repo" target="_blank" style="color: #fff">HAproxy-WI v3.4.4.2</a>
|
<a href="https://github.com/aidaho12/haproxy-wi/" title="Github repo" target="_blank" style="color: #fff">HAproxy-WI v3.4.4.3</a>
|
||||||
<br>
|
<br>
|
||||||
<a href="https://www.patreon.com/haproxy_wi" title="Donate" target="_blank" style="color: #fff; margin-left: 30px; color: red;" class="patreon"> Patreon</a>
|
<a href="https://www.patreon.com/haproxy_wi" title="Donate" target="_blank" style="color: #fff; margin-left: 30px; color: red;" class="patreon"> Patreon</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
19
install.sh
19
install.sh
|
@ -151,7 +151,24 @@ cat << EOF > $HAPROXY_WI_VHOST_CONF
|
||||||
Allow from all
|
Allow from all
|
||||||
</Directory>
|
</Directory>
|
||||||
|
|
||||||
<FilesMatch "\.config$">
|
<Directory /var/www/haproxy-wi/app/certs>
|
||||||
|
Options +ExecCGI -Indexes +MultiViews
|
||||||
|
Order Deny,Allow
|
||||||
|
Deny from all
|
||||||
|
</Directory>
|
||||||
|
|
||||||
|
<Directory /var/www/haproxy-wi/keys>
|
||||||
|
Options +ExecCGI -Indexes +MultiViews
|
||||||
|
Order Deny,Allow
|
||||||
|
Deny from all
|
||||||
|
</Directory>
|
||||||
|
|
||||||
|
<FilesMatch "\.cfg$">
|
||||||
|
Order Deny,Allow
|
||||||
|
Deny from all
|
||||||
|
</FilesMatch>
|
||||||
|
|
||||||
|
<FilesMatch "\.db$">
|
||||||
Order Deny,Allow
|
Order Deny,Allow
|
||||||
Deny from all
|
Deny from all
|
||||||
</FilesMatch>
|
</FilesMatch>
|
||||||
|
|
Loading…
Reference in New Issue