nixos-configuration/services/forgejo.nix

15 lines
280 B
Nix
Raw Normal View History

{ ... }:
{
services = {
forgejo.enable = true;
2023-12-23 21:46:19 +00:00
nginx.virtualHosts."git.jrpotter.com" = {
forceSSL = true;
enableACME = true;
locations."/" = {
recommendedProxySettings = true;
proxyPass = "http://127.0.0.1:3000";
};
};
};
}