14 lines
180 B
Caddyfile
14 lines
180 B
Caddyfile
|
{
|
||
|
auto_https off
|
||
|
admin off
|
||
|
}
|
||
|
|
||
|
:8000 {
|
||
|
handle_path /static/* {
|
||
|
root * src/web/static/
|
||
|
file_server
|
||
|
}
|
||
|
handle {
|
||
|
reverse_proxy :8001
|
||
|
}
|
||
|
}
|