Release 0.9.8-16

This commit is contained in:
Serghey Rodin 2016-06-27 14:30:39 +03:00
commit c59b6230a2
161 changed files with 521 additions and 159 deletions

View file

@ -1,7 +1,7 @@
Source: vesta-nginx
Package: vesta-nginx
Priority: optional
Version: 0.9.8-15
Version: 0.9.8-16
Section: admin
Maintainer: Serghey Rodin <skid@vestacp.com>
Homepage: http://vestacp.com

View file

@ -1,7 +1,7 @@
Source: vesta-php
Package: vesta-php
Priority: optional
Version: 0.9.8-15
Version: 0.9.8-16
Section: admin
Maintainer: Serghey Rodin <skid@vestacp.com>
Homepage: http://vestacp.com

View file

@ -1,7 +1,7 @@
Source: vesta
Package: vesta
Priority: optional
Version: 0.9.8-15
Version: 0.9.8-16
Section: admin
Maintainer: Serghey Rodin <skid@vestacp.com>
Homepage: http://vestacp.com

View file

@ -10,4 +10,9 @@ if [ -x "/usr/local/vesta/upd/add_notifications.sh" ]; then
/usr/local/vesta/upd/add_notifications.sh
fi
# Run session save path trigger
if [ -x "/usr/local/vesta/upd/fix_sessions.sh" ]; then
/usr/local/vesta/upd/fix_sessions.sh
fi
exit 0

View file

@ -14,10 +14,10 @@ http {
tcp_nopush on;
tcp_nodelay on;
client_header_timeout 1m;
client_body_timeout 1m;
client_body_timeout 3m;
client_header_buffer_size 2k;
client_body_buffer_size 256k;
client_max_body_size 100m;
client_max_body_size 256m;
large_client_header_buffers 4 8k;
send_timeout 30;
keepalive_timeout 60 60;

View file

@ -498,3 +498,4 @@ php_admin_value[post_max_size] = 512M
php_admin_value[upload_max_filesize] = 512M
php_admin_value[max_execution_time] = 600
php_admin_value[max_input_time] = 600
php_admin_value[session.save_path] = /usr/local/vesta/data/sessions"

View file

@ -1,6 +1,6 @@
Name: vesta-nginx
Version: 0.9.8
Release: 15
Release: 16
Summary: Vesta Control Panel
Group: System Environment/Base
License: BSD-like

View file

@ -1,6 +1,6 @@
Name: vesta-php
Version: 0.9.8
Release: 15
Release: 16
Summary: Vesta Control Panel
Group: System Environment/Base
License: GPL
@ -52,6 +52,9 @@ fi
%attr(755,root,root) /usr/local/vesta/php
%changelog
* Wed Jul 31 2013 Serghey Rodin <builder@vestacp.com> - 0.9.8-16
- New session save path
* Wed Jul 31 2013 Serghey Rodin <builder@vestacp.com> - 0.9.8-1
- Upgraded to 5.4.17

View file

@ -1,6 +1,6 @@
Name: vesta
Version: 0.9.8
Release: 15
Release: 16
Summary: Vesta Control Panel
Group: System Environment/Base
License: GPL
@ -36,6 +36,9 @@ if [ $1 -ge 2 ]; then
if [ -e /usr/local/vesta/upd/add_notifications.sh ]; then
/usr/local/vesta/upd/add_notifications.sh
fi
if [ -e /usr/local/vesta/upd/fix_sessions.sh ]; then
/usr/local/vesta/upd/fix_sessions.sh
fi
fi
%files
%{_vestadir}
@ -50,6 +53,17 @@ fi
%config(noreplace) %{_vestadir}/web/css/uploadify.css
%changelog
* Mon June 27 2015 Serghey Rodin <builder@vestacp.com> - 0.9.8-16
- Full keyboard control
- Cron Helper
- LetsEncrypt Support cli-only
- Language files update
- File permission in File Manager
- Handle DES passwords
- New templates for PHP-FPM
- Core refactoring
- Dozen bugfixes including security issues
* Fri Nov 06 2015 Serghey Rodin <builder@vestacp.com> - 0.9.8-15
- File Manager (commercial plugin)
- SFTP Chroot (commercial plugin)