-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker_start.sh
46 lines (43 loc) · 1.23 KB
/
docker_start.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/bin/sh
if [ -z "$CROWDSEC_API_KEY" ]; then
echo "CROWDSEC_API_KEY is not set"
exit 1
fi
if [ -z "$CROWDSEC_API_URL" ]; then
echo "CROWDSEC_API_URL is not set"
exit 1
fi
if [ -z "$AUTH_TYPE" ]; then
echo "AUTH_TYPE is not set, defaulting to none"
else
if [ "$AUTH_TYPE" = "basic" ]; then
if [ -z "$USERNAME" ]; then
echo "USERNAME is not set"
exit 1
fi
if [ -z "$PASSWORD" ]; then
echo "PASSWORD is not set"
exit 1
fi
/usr/bin/htpasswd -b -c /etc/nginx/.htpasswd "$USERNAME" "$PASSWORD"
/bin/sed -i "s/#auth_basic/auth_basic/g" /etc/nginx/conf.d/default.conf
/bin/sed -i "s/#auth_basic_user_file/auth_basic_user_file/g" /etc/nginx/conf.d/default.conf
elif [ "$AUTH_TYPE" = "ip_based" ]; then
if [ -z "$IP" ]; then
echo "AUTH_TYPE is set to ip_based but no IP is not set"
exit 1
fi
for ip in $(echo "$IP" | sed "s/,/ /g")
do
echo "allow $ip;" >> /etc/nginx/conf.d/allow.conf
done
echo "deny all;" >> /etc/nginx/conf.d/allow.conf
elif [ "$AUTH_TYPE" = "none" ]; then
echo "AUTH_TYPE is set to none, no authentication will be used"
else
echo "AUTH_TYPE is not set to basic, ip_based or none"
exit 1
fi
fi
/bin/sh /nginx-list.sh&
/usr/sbin/nginx -g "daemon off;"