Files
enstrayedapi/Caddyfile
2024-04-09 15:02:16 -07:00

21 lines
312 B
Caddyfile

:8082 {
reverse_proxy localhost:8081
}
:8083 {
@staticpaths {
path /
path /_static*
path /favicon.ico
}
handle @staticpaths {
root ./etydFrontend
file_server
}
handle /* {
rewrite * /etyd{uri}
reverse_proxy localhost:8081
}
}