Refactor Nix configurations to update URLs from hypervirtual.world to rougebordeaux.xyz

- Updated flake.nix to change Alejandra and other inputs to follow the new repository structure.
- Modified uptime-kuma configurations to reflect the new domain for Caddy reverse proxy settings.
- Adjusted various multimedia services in Sisyphe to use the new domain for Caddy virtual hosts.
- Disabled the Sabnzbd service in Sisyphe and updated its Caddy configuration.
- Corrected multiple service configurations in Sisyphe to point to the new domain, including Grafana, Nextcloud, and Synapse Matrix.
- Ensured all references to hypervirtual.world are replaced with rougebordeaux.xyz across all relevant files.
This commit is contained in:
chloe 2025-05-08 16:02:47 +02:00
parent 85e2ce21e3
commit 8a522c525c
20 changed files with 136 additions and 537 deletions

View file

@ -25,8 +25,8 @@
};
settings = {
server = {
DOMAIN = "git.hypervirtual.world";
ROOT_URL = "https://git.hypervirtual.world";
DOMAIN = "git.rougebordeaux.xyz";
ROOT_URL = "https://git.rougebordeaux.xyz";
HTTP_PORT = 3333;
};
actions = {
@ -66,7 +66,7 @@
instances.default = {
enable = true;
name = "monolith";
url = "https://git.hypervirtual.world";
url = "https://git.rougebordeaux.xyz";
# Obtaining the path to the runner token file may differ
# tokenFile should be in format TOKEN=<secret>, since it's EnvironmentFile for systemd
tokenFile = config.sops.secrets.forgejo-runner-token.path;
@ -84,7 +84,7 @@
$create --admin --email "`cat ${config.sops.secrets.forgejoInitialMail.path}`" --username you --password "`cat ${config.sops.secrets.forgejoInitialPassword.path}`" &>/dev/null || true
'';
services.caddy.virtualHosts."http://git.hypervirtual.world".extraConfig = ''
services.caddy.virtualHosts."http://git.rougebordeaux.xyz".extraConfig = ''
reverse_proxy :3333
'';
}