tangled
alpha
login
or
join now
cherry.computer
/
nixos
0
fork
atom
The NixOS config for my Hetzner VPS
nixos
0
fork
atom
overview
issues
pulls
pipelines
tidy up caddy configuration
cherry.computer
5 months ago
1d1b42ce
909574cd
verified
This commit was signed with the committer's
known signature
.
cherry.computer
SSH Key Fingerprint:
SHA256:SIA77Ll0IpMb8Xd3RtaGT+PBIGIePhJJg5W2r6Td7cc=
+9
-2
2 changed files
expand all
collapse all
unified
split
servers.nix
services
myivo.nix
+6
-1
servers.nix
reviewed
···
7
7
./services/tangled.nix
8
8
];
9
9
10
10
-
services.caddy.enable = true;
10
10
+
services.caddy = {
11
11
+
enable = true;
12
12
+
globalConfig = ''
13
13
+
email ivo@cherry.computer
14
14
+
'';
15
15
+
};
11
16
}
+3
-1
services/myivo.nix
reviewed
···
82
82
extraConfig = ''
83
83
@backend path / /media/*
84
84
85
85
-
root * ${frontend}
85
85
+
root ${frontend}
86
86
+
encode
87
87
+
86
88
reverse_proxy @backend localhost:53465
87
89
file_server
88
90
'';