mirror of
https://github.com/caddyserver/caddy.git
synced 2026-04-20 16:58:56 -04:00
48 lines
524 B
Plaintext
48 lines
524 B
Plaintext
{
|
|
log {
|
|
format journald {
|
|
wrap console
|
|
}
|
|
}
|
|
}
|
|
|
|
:80 {
|
|
respond "Hello, World!"
|
|
}
|
|
----------
|
|
{
|
|
"logging": {
|
|
"logs": {
|
|
"default": {
|
|
"encoder": {
|
|
"format": "journald",
|
|
"wrap": {
|
|
"format": "console"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"apps": {
|
|
"http": {
|
|
"servers": {
|
|
"srv0": {
|
|
"listen": [
|
|
":80"
|
|
],
|
|
"routes": [
|
|
{
|
|
"handle": [
|
|
{
|
|
"body": "Hello, World!",
|
|
"handler": "static_response"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|