34 lines
733 B
Nix
34 lines
733 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
{
|
||
|
|
||
|
services.nginx = {
|
||
|
enable = true;
|
||
|
statusPage = true;
|
||
|
virtualHosts = {
|
||
|
"git.ingolf-wagner.de" = {
|
||
|
forceSSL = true;
|
||
|
enableACME = true;
|
||
|
locations."/" = {
|
||
|
proxyPass = "http://localhost:${toString config.services.gogs.httpPort}";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
services.gitea = {
|
||
|
enable = true;
|
||
|
appName = "git.ingolf-wagner.de";
|
||
|
cookieSecure = true;
|
||
|
disableRegistration = true;
|
||
|
domain = "git.ingolf-wagner.de";
|
||
|
dump.enable = true;
|
||
|
rootUrl = "https://git.ingolf-wagner.de/";
|
||
|
settings = {
|
||
|
other = {
|
||
|
SHOW_FOOTER_VERSION = false;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
#backup.dirs = [ config.services.gogs.repositoryRoot ];
|
||
|
}
|