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/vps/vps.logical.nix | |
parent | Test nixcloud-webservices (diff) | |
download | toph-01d115d147b78e5a19126ceb08070478f4dd4c30.tar.gz toph-01d115d147b78e5a19126ceb08070478f4dd4c30.tar.xz |
Remove existing NixOps configuration
Diffstat (limited to 'servers/vps/vps.logical.nix')
-rw-r--r-- | servers/vps/vps.logical.nix | 25 |
1 files changed, 0 insertions, 25 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"; - }; - }; - }; -} |