28 lines
681 B
YAML
28 lines
681 B
YAML
---
|
|
letsencrypt_acme_install: '{{ cdh_letsencrypt_acme_install }}'
|
|
cdh_http_port: 80
|
|
cdh_https_port: 443
|
|
|
|
# set it to true on the CDM node only.
|
|
#nginx_enabled: True
|
|
nginx_proxy_buffering: "off"
|
|
nginx_define_x_real_ip: True
|
|
nginx_use_common_virthost: True
|
|
cdh_nginx_virthosts:
|
|
- virthost_name: '{{ ansible_fqdn }}'
|
|
listen: '{{ http_port }}'
|
|
server_name: '{{ ansible_fqdn }}'
|
|
ssl_enabled: True
|
|
ssl_only: True
|
|
ssl_letsencrypt_certs: '{{ nginx_letsencrypt_managed }}'
|
|
root: /usr/share/nginx/html/
|
|
server_tokens: 'off'
|
|
proxy_standard_setup: True
|
|
locations:
|
|
- location: /
|
|
target: http://localhost:7180/
|
|
|
|
openjdk_pkgs:
|
|
- jre
|
|
- jdk
|