{ config, ... }: { #Collabora Containers virtualisation.oci-containers.containers.pally = { image = "docker.io/croox/pa11y-dashboard:latest"; ports = [ "4000:4000/tcp" ]; extraOptions = [ "--pull=newer" ]; }; services.nginx.virtualHosts."allywatch.cloonar.com" = { enableACME = true; forceSSL = true; extraConfig = '' # static files location ^~ / { proxy_pass http://127.0.0.1:4000; proxy_set_header Host $host; } ''; }; }