18 lines
245 B
Caddyfile
18 lines
245 B
Caddyfile
https://*:8080 {
|
|
root * ./frontend
|
|
|
|
try_files {path} {path}/index.html
|
|
|
|
handle {
|
|
@file_exists file
|
|
handle @file_exists {
|
|
file_server
|
|
}
|
|
|
|
@not_file_exists not file
|
|
handle @not_file_exists {
|
|
reverse_proxy localhost:3000
|
|
}
|
|
}
|
|
}
|