mirror of
https://github.com/FAUSheppy/athq-vm-management
synced 2025-12-09 23:08:33 +01:00
16 lines
292 B
Django/Jinja
16 lines
292 B
Django/Jinja
server{
|
|
|
|
# {{ comment }}
|
|
|
|
listen 443 ssl;
|
|
listen [::]:443 ssl;
|
|
|
|
{% if servernames %}
|
|
server_name {% for s in servernames %} {{ s }} {% endfor %};
|
|
{% endif %}
|
|
|
|
include locations/acme-challenge.conf;
|
|
|
|
proxy_pass http://{{ targetip }}:{{ targetport }};
|
|
}
|