Commit: 77592a8
Parent: e9d681f

Use a more permissive repo name RegEx in SmartHttpClone

Mårten Åsberg committed on 2026-02-21 at 19:52
SmartHttpClone.containerfile +1 -1
diff --git a/SmartHttpClone.containerfile b/SmartHttpClone.containerfile
index 279744e..aaf4602 100644
@@ -1,4 +1,4 @@
FROM nginx:1.29.3@sha256:553f64aecdc31b5bf944521731cd70e35da4faed96b2b7548a3d8e2598c52a42
FROM nginx@sha256:341bf0f3ce6c5277d6002cf6e1fb0319fa4252add24ab6a0e262e0056d313208
RUN apt-get update && apt-get install -y \
git \
SmartHttpClone/nginx.conf +1 -1
diff --git a/SmartHttpClone/nginx.conf b/SmartHttpClone/nginx.conf
index ff84710..d5ca947 100644
@@ -13,7 +13,7 @@ http {
server_name $hostname;
location ~ (^/\w+\.git/.*) {
location ~ (^/[^/]*\.git/.*) {
# Set chunks to unlimited, as the bodies can be huge
client_max_body_size 0;