machine-config/bert/services/http/home.chandlerswift.com.nix

16 lines
349 B
Nix
Raw Normal View History

2024-10-31 00:55:10 -05:00
{
services.caddy.virtualHosts."home.chandlerswift.com".extraConfig = ''
encode zstd gzip
file_server
root * /srv/home.chandlerswift.com
2024-10-31 01:50:48 -05:00
reverse_proxy /grafana/* localhost:3000
2024-10-31 00:55:10 -05:00
# hide .git # ???
'';
systemd.tmpfiles.settings."10-home-chandlerswift-com" = {
"/srv/home.chandlerswift.com" = {
d = {};
};
};
}