We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9139bb commit 3a6f145Copy full SHA for 3a6f145
2 files changed
.gitignore
@@ -43,7 +43,7 @@ docs/docs.zip
43
logspout/build/
44
logspout/Godeps/
45
publisher/Godeps/
46
-router/parent/Godeps/
+router/Godeps/
47
48
# coverage reports
49
.coverage
router/image/bin/check
@@ -0,0 +1,12 @@
1
+#!/bin/bash
2
+#
3
+# Check that the configuration for deis-router is valid.
4
5
+
6
+if grep -q "<no value>" $1 ; then
7
+ exit 1
8
+fi
9
10
+if ! /opt/nginx/sbin/nginx -t -c $1 ; then
11
12
0 commit comments