Merge "Allow do disable SSL only for stats frontend"
This commit is contained in:
2 changed files with 2 additions and 1 deletions
@@ -30,6 +30,7 @@ haproxy_interval: 12000
haproxy_stats_enabled:False
haproxy_stats_bind_address:127.0.0.1
haproxy_stats_port:1936
haproxy_stats_ssl:"{{ haproxy_ssl }}"
haproxy_username:admin
haproxy_stats_password:secrete
haproxy_stats_refresh_interval:60
@@ -42,7 +42,7 @@ defaults
{% if haproxy_stats_enabled | bool %}
listen stats
bind {{ haproxy_stats_bind_address }}:{{ haproxy_stats_port }} {% if haproxy_ssl | bool %}ssl crt {{ haproxy_ssl_cert_path }}/haproxy_{{ ansible_facts['hostname'] }}-{{ haproxy_bind_internal_lb_vip_address }}.pem{% endif %}
bind {{ haproxy_stats_bind_address }}:{{ haproxy_stats_port }} {% if haproxy_stats_ssl | bool %}ssl crt {{ haproxy_ssl_cert_path }}/haproxy_{{ ansible_facts['hostname'] }}-{{ haproxy_bind_internal_lb_vip_address }}.pem{% endif %}
{% if haproxy_stats_process is defined %}
bind-process {{ haproxy_stats_process }}
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.