diff options
author | David Thompson <dthompson2@worcester.edu> | 2023-09-21 21:29:11 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2023-09-21 21:29:11 -0400 |
commit | 317976779cdc422f16ed001cf5e6bcd0d5976396 (patch) | |
tree | 50256e9082b3cb15cdf2ae654d2b864fa1c5eb2e | |
parent | dbf2e7dde9c2d9a0ad9993241e91ac8d8aaa2540 (diff) |
takemi: Fix git URL regexp.
-rw-r--r-- | takemi-os.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/takemi-os.scm b/takemi-os.scm index 7d99c8e..7bbfa55 100644 --- a/takemi-os.scm +++ b/takemi-os.scm @@ -212,7 +212,7 @@ ;; URI paths with .git are handled by ;; Git's "smart" HTTP protocol. (nginx-location-configuration - (uri "~ (/.*\\.git.*)") + (uri "~ (/.*\\.git/.*)") (body `(("fastcgi_pass " ,fcgiwrap-socket ";") ("fastcgi_param SCRIPT_FILENAME " |