summary refs log tree commit diff
diff options
context:
space:
mode:
authorTheArcaneBrony <myrainbowdash949@gmail.com>2023-02-11 23:26:58 +0100
committerTheArcaneBrony <myrainbowdash949@gmail.com>2023-02-11 23:26:58 +0100
commit0b18585810798fe258a24601f24a88e33460cd7d (patch)
tree19cec2007ad61393d1d93da1297665e33f63772a
parentFix filenames (diff)
downloadRory-Open-Architecture-0b18585810798fe258a24601f24a88e33460cd7d.tar.xz
Add some base domains
Signed-off-by: TheArcaneBrony <myrainbowdash949@gmail.com>
-rw-r--r--host/Rory-discordbots/configuration.nix10
-rw-r--r--host/Rory-fosscord/configuration.nix6
-rw-r--r--host/Rory-nginx/hosts/boorunav.com/root.nix8
-rw-r--r--host/Rory-nginx/hosts/catgirlsaresexy.com/root.nix8
-rw-r--r--host/Rory-nginx/hosts/rory.gay/lfs.nix8
-rw-r--r--host/Rory-nginx/hosts/sugarcanemc.org/root.nix8
-rw-r--r--host/Rory-nginx/hosts/thearcanebrony.net/vives.nix2
7 files changed, 41 insertions, 9 deletions
diff --git a/host/Rory-discordbots/configuration.nix b/host/Rory-discordbots/configuration.nix
index a4d9d86..ed9b248 100644
--- a/host/Rory-discordbots/configuration.nix
+++ b/host/Rory-discordbots/configuration.nix
@@ -4,11 +4,11 @@
   imports =
     [
       ../../modules/base-server.nix
-     # ./services.nix
-     botcore-v4.modules.bots
-     botcore-v4.modules.frontend
-     botcore-v4.modules.dataupdater
-     botcore-v4.modules.users
+      # ./services.nix
+      botcore-v4.modules.bots
+      botcore-v4.modules.frontend
+      botcore-v4.modules.dataupdater
+      botcore-v4.modules.users
     ];
 
   networking = {
diff --git a/host/Rory-fosscord/configuration.nix b/host/Rory-fosscord/configuration.nix
index c7240a6..78756f4 100644
--- a/host/Rory-fosscord/configuration.nix
+++ b/host/Rory-fosscord/configuration.nix
@@ -4,9 +4,9 @@
   imports =
     [
       ../../modules/base-server.nix
-     # ./services.nix
-     discord-client-proxy.modules.proxy
-     discord-client-proxy.modules.users
+      # ./services.nix
+      discord-client-proxy.modules.proxy
+      discord-client-proxy.modules.users
     ];
 
   networking = {
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";