mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
351 B
Plaintext
14 lines
351 B
Plaintext
5 years ago
|
# {{ ansible_managed }}
|
||
|
server = true
|
||
|
pid_file = "{{ remote_dir }}/consul.pid"
|
||
|
ports {
|
||
|
http = 8500
|
||
|
{% if pyopenssl_version.stdout is version('0.15', '>=') %}
|
||
|
https = 8501
|
||
|
{% endif %}
|
||
|
}
|
||
|
{% if pyopenssl_version.stdout is version('0.15', '>=') %}
|
||
|
key_file = "{{ remote_dir }}/privatekey.pem"
|
||
|
cert_file = "{{ remote_dir }}/cert.pem"
|
||
|
{% endif %}
|