diff options
Diffstat (limited to 'host/Spacebar-nginx')
-rwxr-xr-x | host/Spacebar-nginx/configuration.nix | 2 | ||||
-rwxr-xr-x | host/Spacebar-nginx/hosts/spacebar.chat/mail.nix | 14 | ||||
-rwxr-xr-x | host/Spacebar-nginx/hosts/spacebar.chat/root.nix | 10 |
3 files changed, 15 insertions, 11 deletions
diff --git a/host/Spacebar-nginx/configuration.nix b/host/Spacebar-nginx/configuration.nix index 19b8dc0..21da3b4 100755 --- a/host/Spacebar-nginx/configuration.nix +++ b/host/Spacebar-nginx/configuration.nix @@ -3,7 +3,7 @@ { imports = [ - ../../modules/base-server.nix + ../../modules/base.nix ]; networking = { diff --git a/host/Spacebar-nginx/hosts/spacebar.chat/mail.nix b/host/Spacebar-nginx/hosts/spacebar.chat/mail.nix new file mode 100755 index 0000000..3ca873d --- /dev/null +++ b/host/Spacebar-nginx/hosts/spacebar.chat/mail.nix @@ -0,0 +1,14 @@ +{ + enableACME = true; + forceSSL = true; + locations = { + "/" = { + proxyPass = "http://192.168.1.3"; + proxyWebsockets = true; + extraConfig = + "proxy_ssl_server_name on;" + + "proxy_pass_header Authorization;" + ; + }; + }; +} diff --git a/host/Spacebar-nginx/hosts/spacebar.chat/root.nix b/host/Spacebar-nginx/hosts/spacebar.chat/root.nix deleted file mode 100755 index a859950..0000000 --- a/host/Spacebar-nginx/hosts/spacebar.chat/root.nix +++ /dev/null @@ -1,10 +0,0 @@ -{ - root = "/data/nginx/html_boorunav"; - enableACME = true; - addSSL = true; - locations = { - "/" = { - index = "index.html"; - }; - }; -} \ No newline at end of file |