httpd.conf (1363B)
1 types { include "/usr/share/misc/mime.types" } 2 server "http" { 3 listen on egress port http 4 location "/.well-known/acme-challenge/*" { 5 root "/acme" 6 request strip 2 7 } 8 location * { 9 block return 301 "https://$HTTP_HOST$REQUEST_URI" 10 } 11 no log 12 } 13 server "https" { 14 listen on lo port https 15 gzip-static 16 no log 17 } 18 server "src.dalliard.ch" { 19 listen on lo port https 20 root "/got" 21 gzip-static 22 no log 23 } 24 server "bitcoin-wallis.ch" { 25 listen on lo port https 26 root "/bw" 27 gzip-static 28 no log 29 } 30 server "www.bitcoin-wallis.ch" { 31 alias www.bitcoinwallis.ch 32 alias bitcoinwallis.ch 33 listen on lo port https 34 block return 301 "https://bitcoin-wallis.ch$REQUEST_URI" 35 no log 36 } 37 server "bibeltreu.com" { 38 listen on lo port https 39 errdocs "/bt" 40 root "/bt" 41 gzip-static 42 no log 43 } 44 server "www.bibeltreu.com" { 45 listen on lo port https 46 block return 301 "https://bibeltreu.com$REQUEST_URI" 47 no log 48 } 49 server "die-sexualberatung.ch" { 50 listen on lo port https 51 errdocs "/sb" 52 root "/sb" 53 gzip-static 54 no log 55 } 56 server "www.die-sexualberatung.ch" { 57 listen on lo port https 58 block return 301 "https://die-sexualberatung.ch$REQUEST_URI" 59 no log 60 } 61 server "die-maltherapie.ch" { 62 listen on lo port https 63 errdocs "/mt" 64 root "/mt" 65 gzip-static 66 no log 67 } 68 server "www.die-maltherapie.ch" { 69 listen on lo port https 70 block return 301 "https://die-maltherapie.ch$REQUEST_URI" 71 no log 72 }