changed gitignore again, still learning git more
This commit is contained in:
parent
01547d5702
commit
4722aebb2b
|
@ -0,0 +1 @@
|
|||
ssl/*
|
10
haproxy.cfg
10
haproxy.cfg
|
@ -34,17 +34,17 @@ frontend https_front
|
|||
|
||||
#### WP admin to single server ####
|
||||
acl url_is_wp_admin path_beg /wp-admin /wp-login.php /manage /securein
|
||||
use_backend adminServerHTTPS if url_is_wp_admin
|
||||
use_backend adminServerHTTP if url_is_wp_admin
|
||||
|
||||
#### Configure Backends ####
|
||||
default_backend webserversHTTPS
|
||||
default_backend webserversHTTP
|
||||
|
||||
#### Main Backend ####
|
||||
backend webserversHTTPS
|
||||
backend webserversHTTP
|
||||
balance roundrobin
|
||||
server web01.nicks.website 10.1.96.4:443 check ssl verify none
|
||||
server web02 10.108.0.5:80 check
|
||||
|
||||
#### Admin server ####
|
||||
backend adminServerHTTPS
|
||||
balance roundrobin
|
||||
server web01.nicks.website 10.1.96.4:443 check ssl verify none
|
||||
server web02 10.108.0.5:80 check
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
# Ignore everything in this directory
|
||||
*
|
||||
# Except this file
|
||||
!.gitignore
|
Loading…
Reference in New Issue