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";
settings = {
server = {
# http config
ROOT_URL = "https://git.blakedheld.xyz";
#LOCAL_ROOT_URL = "https://git.snowbelle.lan";
DOMAIN = "git.blakedheld.xyz";
HTTP_PORT = cfg.port;
SSH_PORT = cfg.ssh_port;
START_SSH_SERVER = true;
ENABLE_PUSH_CREATE_USER = true;
# local network config
#LOCAL_ROOT_URL = "https://git.snowbelle.lan";
ALLOW_LOCALNETWORKS = true;
ALLOWED_DOMAINS = "10.10.0.10";
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;
};
};