staticweb/caddy.json

37 lines
638 B
JSON

{
"admin": {
"disabled": true
},
"apps": {
"http": {
"servers": {
"": {
"listen": [":8080"],
"automatic_https": {
"disable": true,
"disable_redirects": false
},
"routes": [
{
"match": [
{
"path": [
"/*"
]
}
],
"handle": [
{
"handler": "file_server",
"root": "./www"
}
]
}
]
}
}
}
}
}