cps_loki/config/npm/nginx/proxy_host/3.conf

59 lines
662 B
Plaintext
Raw Normal View History

2024-02-08 10:48:19 +00:00
# ------------------------------------------------------------
# overview.loki
# ------------------------------------------------------------
map $scheme $hsts_header {
https "max-age=63072000; preload";
}
server {
set $forward_scheme http;
set $server "host.docker.internal";
set $port 1337;
listen 80;
listen [::]:80;
server_name overview.loki;
access_log /data/logs/proxy-host-3_access.log proxy;
error_log /data/logs/proxy-host-3_error.log warn;
location / {
# Proxy!
include conf.d/include/proxy.conf;
}
# Custom
include /data/nginx/custom/server_proxy[.]conf;
}