attempt to use systemssh

This commit is contained in:
2025-11-07 16:35:13 -06:00
parent b97d7e4cb1
commit 96920b6b3d

View File

@@ -73,16 +73,21 @@ in
appName = "gitea"; appName = "gitea";
settings = { settings = {
server = { server = {
# http config
ROOT_URL = "https://git.blakedheld.xyz"; ROOT_URL = "https://git.blakedheld.xyz";
#LOCAL_ROOT_URL = "https://git.snowbelle.lan";
DOMAIN = "git.blakedheld.xyz"; DOMAIN = "git.blakedheld.xyz";
HTTP_PORT = cfg.port; HTTP_PORT = cfg.port;
SSH_PORT = cfg.ssh_port; # local network config
START_SSH_SERVER = true; #LOCAL_ROOT_URL = "https://git.snowbelle.lan";
ENABLE_PUSH_CREATE_USER = true;
ALLOW_LOCALNETWORKS = true; ALLOW_LOCALNETWORKS = true;
ALLOWED_DOMAINS = "10.10.0.10"; ALLOWED_DOMAINS = "10.10.0.10";
SKIP_TLS_VERIFY = true; SKIP_TLS_VERIFY = true;
# configure for system ssh
SSH_PORT = 22;
START_SSH_SERVER = false;
#SSH_ROOT_PATH = "${cfg.data_dir}/.ssh";
# actual git config
ENABLE_PUSH_CREATE_USER = true;
}; };
}; };