17 lines
343 B
Django/Jinja
17 lines
343 B
Django/Jinja
server {
|
|
listen 443 ssl http2;
|
|
listen [::]:443 ssl http2;
|
|
server_name {{ victoria_metrics_server_name }};
|
|
|
|
location / {
|
|
proxy_pass http://[::1]:8428/;
|
|
client_max_body_size 100m;
|
|
}
|
|
{% for item in vm_nginx_proxy_paths %}
|
|
|
|
location {{ item.path }} {
|
|
proxy_pass {{ item.url }};
|
|
}
|
|
{% endfor %}
|
|
}
|