cps_loki/config/npm/nginx/default_host/site.conf

19 lines
469 B
Plaintext
Raw Normal View History

2024-02-08 10:48:19 +00:00
# ------------------------------------------------------------
# Default Site
# ------------------------------------------------------------
server {
listen 80 default;
listen [::]:80 default;
server_name default-host.localhost;
access_log /data/logs/default-host_access.log combined;
error_log /data/logs/default-host_error.log warn;
include conf.d/include/letsencrypt-acme-challenge.conf;
location / {
return 301 http://192.168.20.10:1337/;
}
}