From e64f7a78e01e5fa661471cb518cc71fc33223b5a Mon Sep 17 00:00:00 2001 From: polwex Date: Sun, 21 Jul 2024 01:49:04 +0700 Subject: m --- hosts/cloud/spanm/nginx.nix | 46 --------------------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 hosts/cloud/spanm/nginx.nix (limited to 'hosts/cloud/spanm/nginx.nix') diff --git a/hosts/cloud/spanm/nginx.nix b/hosts/cloud/spanm/nginx.nix deleted file mode 100644 index cda5ab4..0000000 --- a/hosts/cloud/spanm/nginx.nix +++ /dev/null @@ -1,46 +0,0 @@ -{ config, pkgs, ... }: { - - services.nginx = { - enable = true; - appendHttpConfig = '' - limit_req_zone $binary_remote_addr zone=blog:10m rate=10r/s; - ''; - virtualHosts."spandrell.ch" = { - enableACME = true; - forceSSL = true; - locations."/" = { - proxyPass = "http://127.0.0.1:8080"; - proxyWebsockets = true; # needed if you need to use WebSocket - extraConfig = '' - limit_req zone=blog burst=20 nodelay; - proxy_set_header Host $Host; - proxy_set_header Forwarded for=$remote_addr; - ''; - }; - }; - virtualHosts."u.spandrell.ch" = { - enableACME = true; - forceSSL = true; - locations."/" = { - proxyPass = "http://127.0.0.1:8081"; - proxyWebsockets = true; # needed if you need to use WebSocket - extraConfig = '' - limit_req zone=blog burst=20 nodelay; - proxy_set_header Host $Host; - proxy_set_header Forwarded for=$remote_addr; - ''; - }; - }; - virtualHosts."s3.spandrell.ch" = { - enableACME = true; - forceSSL = true; - locations."/" = { - proxyPass = "http://127.0.0.1:9000"; - proxyWebsockets = true; # needed if you need to use WebSocket - extraConfig = '' - proxy_set_header Host $Host; - ''; - }; - }; - }; -} -- cgit v1.2.3