21 lines
413 B
Caddyfile
21 lines
413 B
Caddyfile
{{ www_host }} {
|
|
# PocketBase Admin UI and REST API (files included)
|
|
redir /_ /_/
|
|
handle /_/* {
|
|
reverse_proxy {{ docker_container }}:{{ cms_port }}
|
|
}
|
|
handle /api/* {
|
|
reverse_proxy {{ docker_container }}:{{ cms_port }}
|
|
}
|
|
|
|
# TanStack Start frontend
|
|
handle {
|
|
reverse_proxy {{ docker_container }}:{{ www_port }}
|
|
}
|
|
}
|
|
|
|
{{ cms_host }} {
|
|
redir / /_/
|
|
reverse_proxy {{ docker_container }}:{{ cms_port }}
|
|
}
|