Page MenuHomeDevCentral

orbeon.conf
No OneTemporary

orbeon.conf

# -------------------------------------------------------------
# Configuration for Docker PaaS front-end nginx
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Source file: roles/paas-docker/nginx/files/vhosts/orbeon.conf
# -------------------------------------------------------------
#
# <auto-generated>
# This file is managed by our rOPS SaltStack repository.
#
# Changes to this file may cause incorrect behavior
# and will be lost if the state is redeployed.
# </auto-generated>
server {
listen 80;
listen [::]:80;
server_name {{ fqdn }};
include includes/letsencrypt;
return 301 https://$host$request_uri;
}
server {
server_name {{ fqdn }};
include includes/tls;
ssl_certificate /srv/letsencrypt/etc/live/{{ fqdn }}/fullchain.pem;
ssl_certificate_key /srv/letsencrypt/etc/live/{{ fqdn }}/privkey.pem;
include includes/letsencrypt;
{% for app in args["apps"] %}
location /{{ app }}/ {
proxy_pass http://localhost:16080/orbeon/fr/{{ app }}/;
proxy_redirect http://localhost:16080/orbeon/fr/{{ app }}/ /{{ app }}/;
include includes/proxy_params;
}
{% endfor %}
location /orbeon {
proxy_pass http://localhost:{{ app_port }};
proxy_redirect off;
include includes/proxy_params;
}
root /var/wwwroot-502/$server_name;
error_page 502 /502.html;
location /502.html {}
error_log /var/log/www/{{ service }}/{{ instance }}-error.log;
access_log /var/log/www/{{ service }}/{{ instance }}-access.log;
}

File Metadata

Mime Type
text/plain
Expires
Mon, Sep 14, 16:10 (23 h, 53 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3976847
Default Alt Text
orbeon.conf (1 KB)

Event Timeline