Compare commits
No commits in common. "ea19380c33ac93bd36b2e39f004bf93b6ab94a31" and "bf829bcc6e84968edcd00b807c713b40a04b4744" have entirely different histories.
ea19380c33
...
bf829bcc6e
5 changed files with 4 additions and 36 deletions
|
|
@ -21,10 +21,6 @@ rec {
|
||||||
fqdn = "git." + domain;
|
fqdn = "git." + domain;
|
||||||
port = 3456;
|
port = 3456;
|
||||||
};
|
};
|
||||||
jirafeau = rec {
|
|
||||||
subdomain = "f";
|
|
||||||
fqdn = subdomain + "." + domain;
|
|
||||||
};
|
|
||||||
miniflux = {
|
miniflux = {
|
||||||
fqdn = "rss." + domain;
|
fqdn = "rss." + domain;
|
||||||
port = 8085;
|
port = 8085;
|
||||||
|
|
|
||||||
8
flake.lock
generated
8
flake.lock
generated
|
|
@ -2519,11 +2519,11 @@
|
||||||
"stylix": "stylix_3"
|
"stylix": "stylix_3"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1777750263,
|
"lastModified": 1777741303,
|
||||||
"narHash": "sha256-3c085GHJBwd/t9bA7V0vGzh7PQDOeGHn3TgtURs2K7k=",
|
"narHash": "sha256-zSzzDpJdKhzQbShaAJ+J97kllAQ4nttFr4VMoln2LJo=",
|
||||||
"ref": "release-25.11",
|
"ref": "release-25.11",
|
||||||
"rev": "a0a39253f4cea70bf7e22da5e5644df9707dfb95",
|
"rev": "e801c318a76d147e167ec97342d4d86b302681b8",
|
||||||
"revCount": 46,
|
"revCount": 35,
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://git.sid.ovh/sid/synix.git"
|
"url": "https://git.sid.ovh/sid/synix.git"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,6 @@
|
||||||
outputs.nixosModules.tailscale
|
outputs.nixosModules.tailscale
|
||||||
|
|
||||||
./forgejo.nix
|
./forgejo.nix
|
||||||
./jirafeau.nix
|
|
||||||
./miniflux.nix
|
./miniflux.nix
|
||||||
./netdata.nix
|
./netdata.nix
|
||||||
./nginx.nix
|
./nginx.nix
|
||||||
|
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
||||||
{
|
|
||||||
inputs,
|
|
||||||
constants,
|
|
||||||
pkgs,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
|
|
||||||
{
|
|
||||||
imports = [ inputs.synix.nixosModules.jirafeau ];
|
|
||||||
|
|
||||||
services.jirafeau = {
|
|
||||||
enable = true;
|
|
||||||
package = pkgs.synix.jirafeau;
|
|
||||||
reverseProxy = {
|
|
||||||
enable = true;
|
|
||||||
subdomain = constants.services.jirafeau.subdomain;
|
|
||||||
forceSSL = false;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
@ -35,13 +35,6 @@ in
|
||||||
address = constants.hosts.rx4.ip;
|
address = constants.hosts.rx4.ip;
|
||||||
port = constants.services.forgejo.port;
|
port = constants.services.forgejo.port;
|
||||||
};
|
};
|
||||||
virtualHosts."${constants.services.jirafeau.fqdn}" = {
|
|
||||||
enableACME = ssl;
|
|
||||||
forceSSL = ssl;
|
|
||||||
locations."/" = {
|
|
||||||
proxyPass = "http://${constants.hosts.rx4.ip}";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
virtualHosts."${constants.services.miniflux.fqdn}" = mkVirtualHost {
|
virtualHosts."${constants.services.miniflux.fqdn}" = mkVirtualHost {
|
||||||
inherit ssl;
|
inherit ssl;
|
||||||
address = constants.hosts.rx4.ip;
|
address = constants.hosts.rx4.ip;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue