diff options
| author | EuAndreh <eu@euandre.org> | 2019-05-25 11:00:48 -0300 |
|---|---|---|
| committer | EuAndreh <eu@euandre.org> | 2019-05-25 11:00:48 -0300 |
| commit | 01d115d147b78e5a19126ceb08070478f4dd4c30 (patch) | |
| tree | aca0ddedef19bbb846e776da0cef947e48e3a28a /servers | |
| parent | Test nixcloud-webservices (diff) | |
| download | toph-01d115d147b78e5a19126ceb08070478f4dd4c30.tar.gz toph-01d115d147b78e5a19126ceb08070478f4dd4c30.tar.xz | |
Remove existing NixOps configuration
Diffstat (limited to 'servers')
| -rw-r--r-- | servers/vps/vps.logical.nix | 25 | ||||
| -rw-r--r-- | servers/vps/vps.virtualbox.nix | 8 |
2 files changed, 0 insertions, 33 deletions
diff --git a/servers/vps/vps.logical.nix b/servers/vps/vps.logical.nix deleted file mode 100644 index 9905cee..0000000 --- a/servers/vps/vps.logical.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ - network.description = "Personal VPS"; - - webserver = { config, pkgs, ... }: - let - nixcloud = import (builtins.fetchTarball - "https://github.com/nixcloud/nixcloud-webservices/archive/master.tar.gz"); - in { - imports = [ nixcloud ]; - nixcloud.reverse-proxy = { - enable = true; - extendEtcHosts = true; # test without it - }; - - nixcloud.webservices.mediawiki.test1 = { - enable = true; - - proxyOptions = { - port = 40000; - path = "/wiki"; - domain = "example.com"; - }; - }; - }; -} diff --git a/servers/vps/vps.virtualbox.nix b/servers/vps/vps.virtualbox.nix deleted file mode 100644 index 592862d..0000000 --- a/servers/vps/vps.virtualbox.nix +++ /dev/null @@ -1,8 +0,0 @@ -{ - webserver = { config, pkgs, ... }: { - deployment.targetEnv = "virtualbox"; - deployment.virtualbox.memorySize = 1024; # megabytes - deployment.virtualbox.vcpu = 2; # number of cpus - deployment.virtualbox.headless = true; - }; -} |
