feat(forgejo): enable push create user and org, and set ssh signing format

This commit is contained in:
Mohammad Rafiq 2025-06-24 20:46:51 +08:00
parent 08124bfb91
commit 87f503352f
No known key found for this signature in database

View file

@ -29,7 +29,11 @@ mkWebApp {
START_SSH_SERVER = true; START_SSH_SERVER = true;
SSH_PORT = cfg.sshPort; SSH_PORT = cfg.sshPort;
}; };
repository.USE_COMPAT_SSH_URI = false; repository = {
USE_COMPAT_SSH_URI = false;
ENABLE_PUSH_CREATE_USER = true;
ENABLE_PUSH_CREATE_ORG = true;
};
"repository.signing".FORMAT = "ssh"; "repository.signing".FORMAT = "ssh";
}; };
}; };