nginx-proxy-manager/rootfs/etc/nginx/conf.d/default.conf
Jamie Curnow c1938f949d Polish
2018-08-23 14:24:28 +10:00

36 lines
694 B
Plaintext

# Healthcheck Host which proxies to the Manager,
# thus the healthcheck ensures both services are running
server {
listen 9876 default;
server_name localhost;
access_log /data/logs/manager.log proxy;
include conf.d/include/block-exploits.conf;
location /health {
access_log off;
include conf.d/include/proxy.conf;
}
location / {
return 404;
}
}
# Default 80 Host, which shows a "You are not configured" page
server {
listen 80 default;
server_name localhost;
access_log /data/logs/default.log proxy;
include conf.d/include/assets.conf;
include conf.d/include/block-exploits.conf;
location / {
index index.html;
root /var/www/html;
}
}