switch from nginx to caddy

This commit is contained in:
2024-12-19 16:10:41 +01:00
parent 856fdecbb5
commit d2dfd1a8e0
9 changed files with 160 additions and 40 deletions

View File

@@ -14,31 +14,3 @@ server {
root /host/var/www/seafile;
}
}
server { # homeassistant
listen 80;
server_name ha.herderin.veenboer.xyz;
location / {
proxy_pass http://host:8123;
include /etc/nginx/conf/proxy.conf;
}
}
server { # esphome
# listen 443 ssl;
listen 80;
server_name esp.herderin.veenboer.xyz;
location / {
proxy_pass http://host:6052;
include /etc/nginx/conf/proxy.conf;
}
}
server { # grafana
listen 80;
server_name grafana.herderin.veenboer.xyz;
location / {
proxy_pass http://host:3333;
include /etc/nginx/conf/proxy.conf;
}
}