27 lines
582 B
Caddyfile
27 lines
582 B
Caddyfile
{
|
|
servers {
|
|
protocols h1 h2
|
|
}
|
|
}
|
|
|
|
dc9.opfo.xyz {
|
|
tls {
|
|
issuer acme {
|
|
disable_http_challenge
|
|
}
|
|
}
|
|
encode zstd gzip
|
|
header {
|
|
X-Content-Type-Options nosniff
|
|
X-Frame-Options DENY
|
|
Referrer-Policy no-referrer
|
|
}
|
|
respond <<HTML
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1"><title>Service Status</title></head>
|
|
<body><main><h1>Service online</h1><p>The requested service is available.</p></main></body>
|
|
</html>
|
|
HTML
|
|
}
|