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

16 lines
357 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
2024-11-05 23:48:09 -06:00
root * /srv/www/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" = {
2024-11-05 23:48:09 -06:00
"/srv/www/home.chandlerswift.com" = {
2024-10-31 00:55:10 -05:00
d = {};
};
};
}