Files
auricom-home-cluster/kubernetes/apps/default/vikunja/app/config/Caddyfile
2022-12-28 17:12:57 +01:00

32 lines
372 B
Caddyfile

{
admin off
auto_https off
}
:8080 {
log {
output stdout
}
@api {
path /api/*
path /.well-known/*
path /dav/*
}
header {
# Remove Server header
-Server
}
# API
handle @api {
reverse_proxy localhost:3456
}
# Filtron
handle {
reverse_proxy localhost:80
}
}