mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 16:57:55 +00:00
13 lines
430 B
Lua
13 lines
430 B
Lua
return {
|
|
tls_servers = {
|
|
-- These are expected to be imported through systemd LoadCredentials
|
|
-- directive.
|
|
{
|
|
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 = "@listen_address@",
|
|
},
|
|
},
|
|
}
|