This commit is contained in:
commit
7d364cdfac
69 changed files with 5268 additions and 0 deletions
43
constants.nix
Normal file
43
constants.nix
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
rec {
|
||||
domain = "sid.ovh";
|
||||
hosts = {
|
||||
sid = {
|
||||
ip = "100.64.0.6";
|
||||
};
|
||||
rx4 = {
|
||||
ip = "100.64.0.10";
|
||||
};
|
||||
vde = {
|
||||
ip = "100.64.0.1";
|
||||
};
|
||||
};
|
||||
services = {
|
||||
docs = {
|
||||
fqdn = "doc." + domain;
|
||||
};
|
||||
forgejo = {
|
||||
fqdn = "git." + domain;
|
||||
port = 3456;
|
||||
};
|
||||
miniflux = {
|
||||
fqdn = "rss." + domain;
|
||||
port = 8085;
|
||||
};
|
||||
netdata = {
|
||||
fqdn = "netdata.sid.tail";
|
||||
port = 19999;
|
||||
};
|
||||
open-webui-oci = {
|
||||
fqdn = "ai." + domain;
|
||||
port = 8083;
|
||||
};
|
||||
rss-bridge = rec {
|
||||
subdomain = "rss-bridge";
|
||||
fqdn = subdomain + "." + domain;
|
||||
};
|
||||
webdav = {
|
||||
fqdn = "dav.rx4.tail";
|
||||
port = 8080;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue