forked from ISTI-ansible-roles/ansible-roles
library/roles/smartgears/smartgears/defaults/main.yml: The tomcat app contexts is an array.
This commit is contained in:
parent
e642ffb648
commit
4d53951c93
|
@ -32,8 +32,7 @@ smartgears_service_name: 'tomcat-instance-{{ smartgears_http_port }}'
|
||||||
|
|
||||||
smartgears_loglevel: WARN
|
smartgears_loglevel: WARN
|
||||||
|
|
||||||
smartgears_tomcat_contexts:
|
smartgears_tomcat_contexts: [ 'whn-manager' ]
|
||||||
whn-manager
|
|
||||||
smartgears_define_context_vo: False
|
smartgears_define_context_vo: False
|
||||||
smartgears_context: '/smart-executor'
|
smartgears_context: '/smart-executor'
|
||||||
smartgears_contexts_list:
|
smartgears_contexts_list:
|
||||||
|
@ -55,7 +54,7 @@ http_port: '{{ smartgears_http_port }}'
|
||||||
|
|
||||||
tomcat_m_webapps_unpack: True
|
tomcat_m_webapps_unpack: True
|
||||||
tomcat_m_instances:
|
tomcat_m_instances:
|
||||||
- { http_enabled: True, http_port: '{{ smartgears_http_port }}', http_address: '0.0.0.0', ajp_enabled: False, ajp_port: '8109', ajp_address: '127.0.0.1', restart_timeout: '{{ tomcat_m_restart_timeout }}', shutdown_port: '-1', java_home: '{{ jdk_java_home }}', user: '{{ smartgears_user }}', user_home: '{{ smartgears_user_home }}', user_shell: '{{ tomcat_m_default_user_shell }}', instance_path: '{{ smartgears_instance_path }}', max_threads: '{{ tomcat_m_max_threads }}', autodeploy: '{{ tomcat_m_webapps_autodeploy }}', unpack: '{{ tomcat_m_webapps_unpack }}', default_conf: True, java_opts: '{{ tomcat_m_java_opts }}', java_gc_opts: '{{ tomcat_m_java_gc_opts }}', other_java_opts: '{{ tomcat_m_other_java_opts }}', remote_debugging: '{{ tomcat_m_enable_remote_debugging }}', remote_debugging_port: '{{ smartgears_debugging_port }}' , access_log_enabled: True, log_rotation_freq: daily, log_retain: 30, allowed_hosts: [ '0.0.0.0/0' ], app_contexts: [ '{{ smartgears_tomcat_contexts }}' ], servername: '{{ ansible_fqdn }}' }
|
- { http_enabled: True, http_port: '{{ smartgears_http_port }}', http_address: '0.0.0.0', ajp_enabled: False, ajp_port: '8109', ajp_address: '127.0.0.1', restart_timeout: '{{ tomcat_m_restart_timeout }}', shutdown_port: '-1', java_home: '{{ jdk_java_home }}', user: '{{ smartgears_user }}', user_home: '{{ smartgears_user_home }}', user_shell: '{{ tomcat_m_default_user_shell }}', instance_path: '{{ smartgears_instance_path }}', max_threads: '{{ tomcat_m_max_threads }}', autodeploy: '{{ tomcat_m_webapps_autodeploy }}', unpack: '{{ tomcat_m_webapps_unpack }}', default_conf: True, java_opts: '{{ tomcat_m_java_opts }}', java_gc_opts: '{{ tomcat_m_java_gc_opts }}', other_java_opts: '{{ tomcat_m_other_java_opts }}', remote_debugging: '{{ tomcat_m_enable_remote_debugging }}', remote_debugging_port: '{{ smartgears_debugging_port }}' , access_log_enabled: True, log_rotation_freq: daily, log_retain: 30, allowed_hosts: [ '0.0.0.0/0' ], app_contexts: '{{ smartgears_tomcat_contexts }}', servername: '{{ ansible_fqdn }}' }
|
||||||
|
|
||||||
# To enable debugging:
|
# To enable debugging:
|
||||||
# - Set
|
# - Set
|
||||||
|
|
Loading…
Reference in New Issue