diff options
-rw-r--r-- | host/Rory-discordbots/configuration.nix | 10 | ||||
-rw-r--r-- | host/Rory-fosscord/configuration.nix | 6 | ||||
-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 |
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"; |