smartcloud 0.0.99 → 0.0.100
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b203046be0d0fb02cb1b598df46eab901b5d808d33dd16645e35f794168d18f1
|
4
|
+
data.tar.gz: 826701212956c9d8162f3751f704d5f6878f5b9dfbfcfa58d27ceaa8104915c4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f79a1a27abaeb07f27839310fb828e65c2da64cb8c324e30dc4cdf16393b0249639a6c65a07a20c9342a1be810809e71f050107b67b8c9890676f2837fc64315
|
7
|
+
data.tar.gz: 804e9cceb75a656675934faef7f2a2afbe831e6fd3294cbfbc9340c2c2b3c2785b1d6d4d27b899f77b3c092f0096a652342c11f584aee5ae777607957d9700ca
|
@@ -1,4 +1,5 @@
|
|
1
|
-
client_max_body_size 0; # Git pushes can be massive, just to make sure nginx doesn't suddenly cut the connection add this.
|
1
|
+
client_max_body_size 0; # Git pushes can be massive, just to make sure nginx doesn't suddenly cut the connection add this. Setting to 0 disables checking of client_max_body_size
|
2
|
+
fastcgi_buffering off; # disables buffering of responses from the FastCGI server
|
2
3
|
|
3
4
|
include fastcgi_params; # Include the default fastcgi configs
|
4
5
|
|
@@ -9,5 +9,5 @@ while read oldrev newrev refname; do
|
|
9
9
|
else
|
10
10
|
REPOSITORY_BASENAME=$(basename $(readlink -nf "$PWD"/..))
|
11
11
|
fi
|
12
|
-
runner prereceive $REPOSITORY_BASENAME $REMOTE_USER $oldrev $newrev $refname
|
12
|
+
runner prereceive $REPOSITORY_BASENAME $REMOTE_USER $oldrev $newrev $refname
|
13
13
|
done
|