Skip to content

Commit 74dbfb2

Browse files
committed
EasyEngine 1.1.1
1 parent 963050b commit 74dbfb2

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

usr/local/sbin/easyengine

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1190,7 +1190,7 @@ if [ "$1" = "version" ] || [ "$1" = "--version" ] || [ "$1" = "-v" ]
11901190
then
11911191

11921192
# Display Easy Engine Version
1193-
echo "easyengine version: 1.1.0"
1193+
echo "easyengine version: 1.1.1"
11941194

11951195
# Easy Engine Info
11961196
elif [ "$1" = "info" ]

usr/local/sbin/eeupdate

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,11 @@ EE101()
178178
sed -i "/extension/a \session.save_handler = memcache\nsession.save_path = \"tcp://localhost:11211\"" /etc/php5/mods-available/memcache.ini
179179
}
180180

181+
EE110()
182+
{
183+
sed -i '/allow ;/d' /etc/nginx/common/acl.conf
184+
}
185+
181186
HTTPAUTH()
182187
{
183188
# Get The htpasswd Details
@@ -262,6 +267,11 @@ then
262267
HTTPAUTH
263268
MYCNFCHECK
264269
fi
270+
271+
if [[ $EECURRENTVERSION = 1.1.0 ]]
272+
then
273+
EE110
274+
fi
265275
fi
266276

267277
# Restart Nginx & PHP Services

0 commit comments

Comments
 (0)