caddy/caddytest/integration/caddyfile_adapt/file_server_hide_repeated.c...

36 lines
434 B
Plaintext

:80
file_server {
hide first.txt
hide second.txt third.txt
}
----------
{
"apps": {
"http": {
"servers": {
"srv0": {
"listen": [
":80"
],
"routes": [
{
"handle": [
{
"handler": "file_server",
"hide": [
"first.txt",
"second.txt",
"third.txt",
"./Caddyfile"
]
}
]
}
]
}
}
}
}
}