diff options
-rw-r--r-- | configuration.nix | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/configuration.nix b/configuration.nix index a599aa9..168f3bc 100644 --- a/configuration.nix +++ b/configuration.nix @@ -18,6 +18,33 @@ recommendedProxySettings = true; recommendedTlsSettings = true; virtualHosts = { + "simatime.com" = { + #forceSSL = true; + #enableACME = true; + locations = { + "/" = { + proxyPass = "http://68.107.97.20:8000"; + }; + }; + }; + "dev.simatime.com" = { + #forceSSL = true; + #enableACME = true; + locations = { + "/" = { + proxyPass = "http://68.107.97.20:3000"; + }; + }; + }; + "hero.simatime.com" = { + #forceSSL = true; + #enableACME = true; + locations = { + "/" = { + proxyPass = "http://68.107.97.20:3001"; + }; + }; + }; "ibb.simatime.com" = { forceSSL = true; enableACME = true; |