flake-config/hosts/crayon/www/voidpkgs.squi.bid.nix
2025-11-09 23:51:40 -05:00

17 lines
275 B
Nix

{ ... }:
{
root = "/var/www/voidpkgs"; # TODO: make declarative
locations."/" = {
extraConfig = ''
try_files $uri $uri/ =404;
sendfile on;
sendfile_max_chunk 1m;
autoindex on;
'';
};
# https
enableACME = true;
forceSSL = true;
}