char/topaz-flake
git clone https://git.t4t.associates/char/topaz-flake
26a6f02
main
1{ pkgs , ...} : 2{ 3services . nginx . virtualHosts . "media.charlotte.partners" = { 4root = "/srv/www/media.charlotte.partners" ; 5forceSSL = true ; 6enableACME = true ; 7extraConfig = '' 8add_header Access-Control-Allow-Origin "*" always; 9charset utf-8; 10'' ; 11locations . "/" = { 12index = "index.txt" ; 13}; 14locations . "/dl/" = { 15extraConfig = '' 16autoindex on; 17'' ; 18}; 19}; 20}