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