Files
enstrayedapi/Caddyfile
2024-06-23 12:54:57 -07:00

22 lines
345 B
Caddyfile

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