blob: fa712c4cca127d1c9eb1bf5cac826a3c9c52629e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
user = "ken"
server http {
host = "0.0.0.0"
port = 80
redirect_to_https = true
acme_challenge {
root = "letsencrypt/webroot"
}
}
server https {
host = "0.0.0.0"
port = 443
tls_cert_file = "letsencrypt/lego/certificates/nil.ninja.crt"
tls_key_file = "letsencrypt/lego/certificates/nil.ninja.key"
proxy albatross {
from {
host = "t.nil.ninja"
path = "/phperkaigi/2024/golf/"
}
to {
host = "127.0.0.1"
port = 8001
}
auth basic {
realm = "Auth required albatross"
credential_file = "albatross.htpasswd"
}
}
}
|