13 lines
184 B
Caddyfile
13 lines
184 B
Caddyfile
:80 {
|
|
# Backend
|
|
handle /api/* {
|
|
reverse_proxy recipes_backend:3000
|
|
}
|
|
|
|
# Frontend
|
|
handle {
|
|
root * /srv/
|
|
try_files {path} /index.html
|
|
file_server
|
|
}
|
|
}
|