# $OpenBSD: httpd.conf,v 1.22 2020/11/04 10:34:18 denis Exp $ server "garbash.com" { listen on * port 80 location "/.well-known/acme-challenge/*" { root "/acme" request strip 2 } location * { block return 302 "https://$HTTP_HOST$REQUEST_URI" } } server "garbash.com" { listen on * tls port 443 tls { certificate "/etc/ssl/garbash.com.fullchain.pem" key "/etc/ssl/private/garbash.com.key" } directory auto index location "/.well-known/acme-challenge/*" { root "/acme" request strip 2 } } server "git.garbash.com" { listen on * tls port 443 root "/git" directory auto index tls { certificate "/etc/ssl/garbash.com.fullchain.pem" key "/etc/ssl/private/garbash.com.key" } location "/.well-known/acme-challenge/*" { root "/acme" request strip 2 } } server "irc.garbash.com" { listen on * tls port 443 root "/htdocs/gamja" tls { certificate "/etc/ssl/uacme/garbash.com/cert.pem" key "/etc/ssl/uacme/private/garbash.com/key.pem" } location "/.well-known/acme-challenge/*" { root "/acme" request strip 2 } } server "lists.garbash.com" { listen on * tls port 443 directory auto index root "/htdocs/lists" tls { certificate "/etc/ssl/uacme/garbash.com/cert.pem" key "/etc/ssl/uacme/private/garbash.com/key.pem" } location "/.well-known/acme-challenge/*" { root "/acme" request strip 2 } }