diff options
author | Ben Sima <ben@bsima.me> | 2022-02-23 22:37:15 -0500 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2022-02-23 22:37:15 -0500 |
commit | cb34da30f3f699c1fcad71b80426e8d87886a2a5 (patch) | |
tree | 20796ae872060fd686046f90e0b9d0e8c53eb0dd /Biz/Cloud/Web.nix | |
parent | 16fd30682fe0a619ea07fb9fbbd6bdfcaf2bed8c (diff) |
Test out nixpert chat service
This is rough, I should move it up in the directory hierarchy and clean up the
nix files, but that can all come later. Just gonna test it out for now. Will
announce it tomorrow afternoon.
Diffstat (limited to 'Biz/Cloud/Web.nix')
-rw-r--r-- | Biz/Cloud/Web.nix | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/Biz/Cloud/Web.nix b/Biz/Cloud/Web.nix index fbe4e03..442024e 100644 --- a/Biz/Cloud/Web.nix +++ b/Biz/Cloud/Web.nix @@ -69,12 +69,13 @@ in # the nginx/cgit module puts a '/' at the end of 'location', so we need to # redirect '/git' to '/git/' "/git".return = "301 https://$host/git/"; - "/" = { - root = "/var/web/simatime.com"; - extraConfig = '' - autoindex on; - ''; - }; + # disabled for nixpert test + #"/" = { + # root = "/var/web/simatime.com"; + # extraConfig = '' + # autoindex on; + # ''; + #}; # serve /~$USER paths "~ ^/~(.+?)(/.*)?$" = { alias = "/var/web/$1$2"; |