Fix Forgejo's root URL

This commit is contained in:
Oliver Davies 2025-05-02 20:29:09 +01:00
parent bce4e8adf7
commit 3d15b7e394

View file

@ -29,7 +29,11 @@ in
stateDir = "/var/www/${service}";
settings = {
server.DOMAIN = cfg.url;
server = {
DOMAIN = cfg.url;
ROOT_URL = "https://${cfg.url}";
};
service.DISABLE_REGISTRATION = true;
};
};