mirror of
https://github.com/auricom/home-cluster.git
synced 2025-09-17 18:24:14 +02:00
32 lines
372 B
Caddyfile
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
|
|
}
|
|
}
|