35 lines
1.1 KiB
Django/Jinja
35 lines
1.1 KiB
Django/Jinja
<container mode='{{ smartgears_mode }}'>
|
|
<hostname>{{ smartgears_hostname }}</hostname>
|
|
{%if setup_nginx %}
|
|
{%if https_port is defined %}
|
|
<port>{{ https_port }}</port>
|
|
{% else %}
|
|
<port>{{ http_port }}</port>
|
|
{% endif %}
|
|
{% else %}
|
|
<port>{{ item.http_port }}</port>
|
|
{% endif %}
|
|
<infrastructure>{{ smartgears_infrastructure_name }}</infrastructure>
|
|
<vo>{{ smartgears_vo_name }}</vo>
|
|
|
|
<site>
|
|
<country>{{ smartgears_country }}</country>
|
|
<location>{{ smartgears_location }}</location>
|
|
<latitude>41.9000</latitude>
|
|
<longitude>12.5000</longitude>
|
|
</site>
|
|
|
|
<property name='SmartGearsDistribution' value='{{ smartgears_distribution_version }}' />
|
|
<property name='SmartGearsDistributionBundle' value='UnBundled' />
|
|
<publication-frequency>60</publication-frequency>
|
|
|
|
{% if smart_executor_install %}
|
|
<application mode="{{ smartgears_mode }}" context="{{ smart_executor_context }}">
|
|
{% for context in smart_executor_contexts_list %}
|
|
<scope>/{{ smartgears_infrastructure_name }}/{{ smartgears_vo_name }}{{ context }}</scope>
|
|
{% endfor %}
|
|
</application>
|
|
{% endif %}
|
|
|
|
</container>
|