diff options
author | TheArcaneBrony <myrainbowdash949@gmail.com> | 2023-02-11 23:26:58 +0100 |
---|---|---|
committer | TheArcaneBrony <myrainbowdash949@gmail.com> | 2023-02-11 23:26:58 +0100 |
commit | 0b18585810798fe258a24601f24a88e33460cd7d (patch) | |
tree | 19cec2007ad61393d1d93da1297665e33f63772a /host/Rory-nginx | |
parent | Fix filenames (diff) | |
download | Rory-Open-Architecture-0b18585810798fe258a24601f24a88e33460cd7d.tar.xz |
Add some base domains
Signed-off-by: TheArcaneBrony <myrainbowdash949@gmail.com>
Diffstat (limited to 'host/Rory-nginx')
-rw-r--r-- | host/Rory-nginx/hosts/boorunav.com/root.nix | 8 | ||||
-rw-r--r-- | host/Rory-nginx/hosts/catgirlsaresexy.com/root.nix | 8 | ||||
-rw-r--r-- | host/Rory-nginx/hosts/rory.gay/lfs.nix | 8 | ||||
-rw-r--r-- | host/Rory-nginx/hosts/sugarcanemc.org/root.nix | 8 | ||||
-rw-r--r-- | host/Rory-nginx/hosts/thearcanebrony.net/vives.nix | 2 |
5 files changed, 33 insertions, 1 deletions
diff --git a/host/Rory-nginx/hosts/boorunav.com/root.nix b/host/Rory-nginx/hosts/boorunav.com/root.nix index e69de29..3eabdfd 100644 --- a/host/Rory-nginx/hosts/boorunav.com/root.nix +++ b/host/Rory-nginx/hosts/boorunav.com/root.nix @@ -0,0 +1,8 @@ +{ + root = "/data/nginx/html_boorunav"; + locations = { + "/" = { + index = "index.html"; + }; + }; +} \ No newline at end of file diff --git a/host/Rory-nginx/hosts/catgirlsaresexy.com/root.nix b/host/Rory-nginx/hosts/catgirlsaresexy.com/root.nix index e69de29..5a7bf2a 100644 --- a/host/Rory-nginx/hosts/catgirlsaresexy.com/root.nix +++ b/host/Rory-nginx/hosts/catgirlsaresexy.com/root.nix @@ -0,0 +1,8 @@ +{ + root = "/data/nginx/html_catgirlsaresexy"; + locations = { + "/" = { + index = "index.html"; + }; + }; +} \ No newline at end of file diff --git a/host/Rory-nginx/hosts/rory.gay/lfs.nix b/host/Rory-nginx/hosts/rory.gay/lfs.nix index e69de29..e406519 100644 --- a/host/Rory-nginx/hosts/rory.gay/lfs.nix +++ b/host/Rory-nginx/hosts/rory.gay/lfs.nix @@ -0,0 +1,8 @@ +{ + root = "/data/nginx/html_lfs"; + locations = { + "/" = { + index = "index.html"; + }; + }; +} \ No newline at end of file diff --git a/host/Rory-nginx/hosts/sugarcanemc.org/root.nix b/host/Rory-nginx/hosts/sugarcanemc.org/root.nix index e69de29..cdfe535 100644 --- a/host/Rory-nginx/hosts/sugarcanemc.org/root.nix +++ b/host/Rory-nginx/hosts/sugarcanemc.org/root.nix @@ -0,0 +1,8 @@ +{ + root = "/data/nginx/html_sugarcanemc"; + locations = { + "/" = { + index = "index.html"; + }; + }; +} \ No newline at end of file diff --git a/host/Rory-nginx/hosts/thearcanebrony.net/vives.nix b/host/Rory-nginx/hosts/thearcanebrony.net/vives.nix index c853d2b..8fac2af 100644 --- a/host/Rory-nginx/hosts/thearcanebrony.net/vives.nix +++ b/host/Rory-nginx/hosts/thearcanebrony.net/vives.nix @@ -1,5 +1,5 @@ { - root = "/var/www/html_vives"; + root = "/data/nginx/html_vives"; locations = { "/" = { index = "index.html"; |