mirror of
https://github.com/bjoernellens1/cps_loki.git
synced 2024-11-23 15:45:08 +00:00
59 lines
662 B
Plaintext
59 lines
662 B
Plaintext
# ------------------------------------------------------------
|
|
# 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;
|
|
}
|