mirror of
https://github.com/FAUSheppy/athq-vm-management
synced 2025-12-07 22:21:35 +01:00
17 lines
298 B
Django/Jinja
17 lines
298 B
Django/Jinja
server{
|
|
|
|
# {{ comment }}
|
|
|
|
listen 443 ssl;
|
|
listen [::]:443 ssl;
|
|
|
|
{% if servernames %}server_name{% for s in servernames %} {{ s }}{% endfor %};{% endif %}
|
|
|
|
include acme-challenge.conf;
|
|
|
|
location / {
|
|
proxy_pass http://{{ targetip }}:{{ targetport }};
|
|
}
|
|
}
|
|
|