mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 22:57:55 +00:00
Gabriel Arazas
187b32e7bb
This should also fix the ACME certificate self-signed permissions error since there is no `wezterm` group (or user). We're just using systemd's dynamic user feature in our service.
8 lines
240 B
Lua
8 lines
240 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",
|
|
}
|
|
}
|