22 lines
345 B
Caddyfile
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
|
|
}
|
|
} |