diff options
author | Ben Sima <ben@bsima.me> | 2019-02-01 08:55:12 -0800 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2019-02-01 09:38:27 -0800 |
commit | 7ecd892c3d785b2ce1c3e0b8a90b921ef835d31a (patch) | |
tree | 30985bec4fa7b6bb688179c88474778eebd199cc | |
parent | d17310b7b59b557e891455983309075aad4fe6a9 (diff) |
Add simatime subdomains
-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; |