This repository has been archived on 2023-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
gitea-migration/modules/nginx.nix

17 lines
305 B
Nix

{ config, lib, pkgs, ... }:
{
security.acme = {
email = "admin@c3d2.de";
acceptTerms = true;
};
services.nginx = {
enable = true;
virtualHosts."gitea.c3d2.de" = {
forceSSL = true;
enableACME = true;
locations."/".proxyPass = "http://localhost:3000";
};
};
}