mirror of
https://github.com/oqyude/nixos.git
synced 2026-08-08 23:53:11 +03:00
29 lines
585 B
Nix
29 lines
585 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
security = {
|
|
acme = {
|
|
acceptTerms = true;
|
|
defaults = {
|
|
email = "oqyude@zeroq.su";
|
|
server = "https://localhost:9000/acme/acme/directory";
|
|
dnsProvider = null;
|
|
};
|
|
# certs = {
|
|
# # "home.arpa" = {
|
|
# # domain = "*.home.arpa";
|
|
# # server = "https://localhost:9000/acme/acme/directory";
|
|
# # listenHTTP = ":80";
|
|
# # };
|
|
# "turn.home.arpa" = {
|
|
# listenHTTP = "127.0.0.1:80";
|
|
# group = "turnserver";
|
|
# };
|
|
# };
|
|
};
|
|
};
|
|
}
|