diff options
author | polwex <polwex@sortug.com> | 2024-09-24 00:43:25 +0700 |
---|---|---|
committer | polwex <polwex@sortug.com> | 2024-09-24 00:43:25 +0700 |
commit | 27ed56803e8075c97a5beddc648f3b1239fd015d (patch) | |
tree | 1c45132ea6306f07fde3826ce72763d9097d0271 /hosts/cloud/sortug | |
parent | 3d933f65cbe50c49d42fe97bd59c5bb15a3d4d09 (diff) |
m
Diffstat (limited to 'hosts/cloud/sortug')
-rw-r--r-- | hosts/cloud/sortug/nginx.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/hosts/cloud/sortug/nginx.nix b/hosts/cloud/sortug/nginx.nix index 655b44c..b075c22 100644 --- a/hosts/cloud/sortug/nginx.nix +++ b/hosts/cloud/sortug/nginx.nix @@ -31,6 +31,14 @@ proxyWebsockets = true; # needed if you need to use WebSocket }; }; + virtualHosts."kino.sortug.com" = { + enableACME = true; + forceSSL = true; + locations."/" = { + proxyPass = "http://127.0.0.1:8095"; + proxyWebsockets = true; # needed if you need to use WebSocket + }; + }; virtualHosts."u.sortug.com" = { enableACME = true; forceSSL = true; |