mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 22:57:55 +00:00
9 lines
275 B
Lua
9 lines
275 B
Lua
return {
|
|
tls_servers = {
|
|
pem_private_key = os.getenv("CREDENTIALS_DIRECTORY") .. "/key.pem",
|
|
pem_cert = os.getenv("CREDENTIALS_DIRECTORY") .. "/cert.pem",
|
|
pem_ca = os.getenv("CREDENTIALS_DIRECTORY") .. "/fullchain.pem",
|
|
bind_address = "@host_address@:@port@",
|
|
},
|
|
}
|