forked from ISTI-ansible-roles/ansible-roles
library/roles/smartgears/smartgears-nginx-frontend: Fix the nginx template so that whn-manager is always added. See https://support.d4science.org/issues/9209
This commit is contained in:
parent
7507ec0850
commit
1fc1d05687
|
@ -61,6 +61,7 @@ server {
|
|||
{% for instance in tomcat_m_instances %}
|
||||
{% for context in instance.app_contexts %}
|
||||
{% if context != "whn-manager" %}
|
||||
{% if context != '' %}
|
||||
location /{{ context }} {
|
||||
{% if smartgears_nginx_cors_enabled %}
|
||||
include /etc/nginx/snippets/nginx-cors.conf;
|
||||
|
@ -68,6 +69,7 @@ server {
|
|||
proxy_pass http://localhost:{{ item.http_port }}/{{ context }};
|
||||
}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
{% if smart_executor_install is defined and smart_executor_install %}
|
||||
|
@ -166,6 +168,7 @@ server {
|
|||
{% for instance in tomcat_m_instances %}
|
||||
{% for context in instance.app_contexts %}
|
||||
{% if context != "whn-manager" %}
|
||||
{% if context != '' %}
|
||||
location /{{ context }} {
|
||||
{% if smartgears_nginx_cors_enabled %}
|
||||
include /etc/nginx/snippets/nginx-cors.conf;
|
||||
|
@ -173,6 +176,7 @@ server {
|
|||
proxy_pass http://localhost:{{ item.http_port }}/{{ context }};
|
||||
}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
{% if smart_executor_install is defined and smart_executor_install %}
|
||||
|
|
|
@ -49,7 +49,7 @@ smartgears_service_name: 'tomcat-instance-{{ smartgears_http_port }}'
|
|||
|
||||
smartgears_loglevel: WARN
|
||||
|
||||
smartgears_tomcat_contexts: [ 'whn-manager' ]
|
||||
smartgears_tomcat_contexts: [ '' ]
|
||||
|
||||
|
||||
# The iptables rules use this
|
||||
|
|
Loading…
Reference in New Issue