This commit is contained in:
Chris Kruining 2025-08-11 09:49:06 +02:00
parent f289c3663a
commit f1ffa33976
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2
2 changed files with 28 additions and 1 deletions

View file

@ -22,12 +22,20 @@ in
HTTP_PORT = 5002;
};
service.DISABLE_REGISTRATION = true;
service = {
DISABLE_REGISTRATION = true;
ALLOW_ONLY_EXTERNAL_REGISTRATION = false;
SHOW_REGISTRATION_BUTTON = false;
};
actions = {
ENABLED = true;
DEFAULT_ACTIONS_URL = "forgejo";
};
session = {
COOKIE_SECURE = true;
};
};
};
@ -54,6 +62,8 @@ in
enable = true;
virtualHosts = {
"git.kruining.eu".extraConfig = ''
import auth
reverse_proxy http://127.0.0.1:5002
'';
};