mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-21 23:54:22 +01:00
Fix path to secrets on altra
Signed-off-by: magic_rb <richard@brezak.sk>
This commit is contained in:
parent
25f3730f4c
commit
9e3c0ff11f
|
@ -104,7 +104,7 @@ in
|
|||
ProxyMatch."^([a-zA-Z\-_0-9]+\.)+[a-zA-Z\-_0-9]*:(443|8448|8443|8478|3236|8080).*$" = {
|
||||
AuthType = "Basic";
|
||||
AuthName = "\"Password Required\"";
|
||||
AuthUserFile = "/var/secret/htpasswd";
|
||||
AuthUserFile = "/var/secrets/htpasswd";
|
||||
|
||||
|
||||
RequireAll."" = {
|
||||
|
@ -124,7 +124,7 @@ in
|
|||
ProxyMatch."^http:\/\/([a-zA-Z\-_0-9]+\.)+[a-zA-Z\-_0-9]*(|:(80|8080))$" = {
|
||||
AuthType = "Basic";
|
||||
AuthName = "\"Password Required\"";
|
||||
AuthUserFile = "/var/secret/htpasswd";
|
||||
AuthUserFile = "/var/secrets/htpasswd";
|
||||
|
||||
|
||||
RequireAll."" = {
|
||||
|
@ -210,6 +210,6 @@ in
|
|||
};
|
||||
|
||||
systemd.services."acme-sh-apache-proxy" = {
|
||||
serviceConfig.EnvironmentFile = mkForce "/var/secret/hetzner.env";
|
||||
serviceConfig.EnvironmentFile = mkForce "/var/secrets/hetzner.env";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue