diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..77176b2 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +ssl/* diff --git a/haproxy.cfg b/haproxy.cfg index cd5f281..528e4ab 100644 --- a/haproxy.cfg +++ b/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 diff --git a/ssl/.gitignore b/ssl/.gitignore deleted file mode 100644 index 5e7d273..0000000 --- a/ssl/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -# Ignore everything in this directory -* -# Except this file -!.gitignore