Adapt ACME configuration to NixOS 20.03
This commit is contained in:
parent
2b283d5588
commit
d9381b19ff
|
@ -6,7 +6,7 @@
|
|||
boot.loader.generic-extlinux-compatible.enable = true;
|
||||
|
||||
# A bunch of boot parameters needed for optimal runtime on RPi 3B
|
||||
boot.kernelParams = ["cma=32M" "zfs.zfs_arc_max=12884901888"];
|
||||
boot.kernelParams = ["cma=32M" "zfs.zfs_arc_max=134217728"];
|
||||
boot.loader.raspberryPi = {
|
||||
enable = true;
|
||||
version = 3;
|
||||
|
|
|
@ -9,10 +9,8 @@
|
|||
avahi
|
||||
ddclient
|
||||
wireguard
|
||||
wireguard-tools
|
||||
];
|
||||
|
||||
|
||||
# Enable zeroconf
|
||||
services.avahi = {
|
||||
enable = true;
|
||||
|
|
|
@ -76,12 +76,15 @@
|
|||
};
|
||||
|
||||
# ACME certs configuration
|
||||
security.acme.certs = {
|
||||
"coolneng.duckdns.org" = {
|
||||
security.acme = {
|
||||
acceptTerms = true;
|
||||
email = "akasroua@gmail.com";
|
||||
certs = {
|
||||
"coolneng.duckdns.org" = {
|
||||
postRun = "systemctl reload nginx.service";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
# Generate dhparams
|
||||
security.dhparams = {
|
||||
|
@ -130,6 +133,7 @@
|
|||
adminCredentialsFile = "/var/keys/miniflux/admin";
|
||||
config = {
|
||||
BASE_URL = "https://coolneng.duckdns.org/miniflux/";
|
||||
RUN_MIGRATIONS = "1";
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue