fix: settings in wrong sections
This commit is contained in:
parent
671198ab74
commit
aed73a45d6
1 changed files with 8 additions and 4 deletions
12
forgejo.nix
12
forgejo.nix
|
|
@ -40,24 +40,28 @@ in
|
||||||
# Enable support for Git Large File Storage
|
# Enable support for Git Large File Storage
|
||||||
lfs.enable = true;
|
lfs.enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
|
DEFAULT = {
|
||||||
|
APP_NAME = "La Forge de Tiqa";
|
||||||
|
};
|
||||||
server = {
|
server = {
|
||||||
DOMAIN = domain;
|
DOMAIN = domain;
|
||||||
# You need to specify this to remove the port from URLs in the web UI.
|
# You need to specify this to remove the port from URLs in the web UI.
|
||||||
ROOT_URL = "https://${domain}/";
|
ROOT_URL = "https://${domain}/";
|
||||||
HTTP_PORT = 3000;
|
HTTP_PORT = 3000;
|
||||||
|
LANDING_PAGE = "explore";
|
||||||
};
|
};
|
||||||
service = {
|
service = {
|
||||||
DISABLE_REGISTRATION = true;
|
DISABLE_REGISTRATION = true;
|
||||||
LANDING_PAGE = "explore";
|
|
||||||
APP_NAME = "La Forge de Tiqa";
|
|
||||||
AUTHOR = "Jalil Arfaoui";
|
|
||||||
DESCRIPTION = "La Forge de Jalil Arfaoui";
|
|
||||||
};
|
};
|
||||||
# Add support for actions, based on act: https://github.com/nektos/act
|
# Add support for actions, based on act: https://github.com/nektos/act
|
||||||
actions = {
|
actions = {
|
||||||
ENABLED = true;
|
ENABLED = true;
|
||||||
DEFAULT_ACTIONS_URL = "github";
|
DEFAULT_ACTIONS_URL = "github";
|
||||||
};
|
};
|
||||||
|
ui.meta = {
|
||||||
|
AUTHOR = "Jalil Arfaoui";
|
||||||
|
DESCRIPTION = "La Forge de Jalil Arfaoui";
|
||||||
|
};
|
||||||
# Sending emails is completely optional
|
# Sending emails is completely optional
|
||||||
# You can send a test email from the web UI at:
|
# You can send a test email from the web UI at:
|
||||||
# Profile Picture > Site Administration > Configuration > Mailer Configuration
|
# Profile Picture > Site Administration > Configuration > Mailer Configuration
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue