Browse Source

EasyEngine v1.3.0

old-stable v1.3
Mitesh Shah 11 years ago
parent
commit
5a54393db4
  1. 11
      CHANGELOG.txt
  2. 15
      etc/nginx/common/locations.conf
  3. 2
      usr/local/sbin/easyengine

11
CHANGELOG.txt

@ -1,3 +1,14 @@
v 1.3.0 - Apr 11, 2014
- Introduce `ee debug` command
- Introduce `ee system [status|stop|start|restart]` command
- EasyEngine Admin Tools shifted on port `22222` with self signed SSL Certificate #124
- Setup Separate PHP5-FPM Pool on Port 9001 for debugging purpose
- Polish `ee site edit` command #157
- Fixed MySQL Username Character Limit #113
- Nginx Settings #100
v 1.2.2 - Mar 18, 2014
- Check/Install bc command
- Fixed EasyEngine Update Issue #134 #148

15
etc/nginx/common/locations.conf

@ -72,18 +72,3 @@ location /phpMyAdmin {
location /phpmyadmin {
return 301 https://$host:22222/db/pma;
}
# Adminer Settings
location /adminer {
return 301 https://$host:22222/db/adminer/;
}
# Memcache Settings
location /memcache {
return 301 https://$host:22222/php/memcache/;
}
# Opcache Settings
location /opcache {
return 301 https://$host:22222/php/opcache/;
}

2
usr/local/sbin/easyengine

@ -1119,8 +1119,6 @@ EEINFO()
echo -e "\033[34mphpMyAdmin:\t\t\t \033[37mhttp://example.com/pma\e[0m"
echo -e "\033[34mPHP Status:\t\t\t \033[37mhttp://example.com/status\e[0m"
echo -e "\033[34mNginx Status:\t\t\t \033[37mhttp://example.com/nginx_status\e[0m"
echo -e "\033[34mMemcache Status:\t\t \033[37mhttp://example.com/memcache\e[0m"
echo -e "\033[34mMemcache Status:\t\t \033[37mhttp://example.com/opcache\e[0m"
echo -e "\033[34mEasyEngine Log File:\t\t \033[37m/var/log/easyengine/install.log\e[0m"
echo -e "\033[34mEasyEngine Configuration File:\t \033[37m/etc/easyengine/ee.conf\e[0m"

Loading…
Cancel
Save