mirror of
https://github.com/myvesta/vesta
synced 2025-08-14 02:28:05 -07:00
Release 0.9.8-15
This commit is contained in:
parent
cdcda8d1e6
commit
95aab70c3e
10 changed files with 68 additions and 54 deletions
|
@ -1,7 +1,7 @@
|
|||
Source: vesta-nginx
|
||||
Package: vesta-nginx
|
||||
Priority: optional
|
||||
Version: 0.9.7-3
|
||||
Version: 0.9.8-15
|
||||
Section: admin
|
||||
Maintainer: Serghey Rodin <skid@vestacp.com>
|
||||
Homepage: http://vestacp.com
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Source: vesta-php
|
||||
Package: vesta-php
|
||||
Priority: optional
|
||||
Version: 0.9.7-3
|
||||
Version: 0.9.8-15
|
||||
Section: admin
|
||||
Maintainer: Serghey Rodin <skid@vestacp.com>
|
||||
Homepage: http://vestacp.com
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Source: vesta
|
||||
Package: vesta
|
||||
Priority: optional
|
||||
Version: 0.9.8-14
|
||||
Version: 0.9.8-15
|
||||
Section: admin
|
||||
Maintainer: Serghey Rodin <skid@vestacp.com>
|
||||
Homepage: http://vestacp.com
|
||||
|
|
|
@ -1,34 +1,13 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Run fwd_only trigger
|
||||
if [ -x "/usr/local/vesta/upd/add_fwd_only.sh" ]; then
|
||||
/usr/local/vesta/upd/add_fwd_only.sh
|
||||
fi
|
||||
|
||||
# Run exim permission fixer
|
||||
if [ -x "/usr/local/vesta/upd/fix_exim_permissions.sh" ]; then
|
||||
/usr/local/vesta/upd/fix_exim_permissions.sh
|
||||
fi
|
||||
|
||||
# Run vesta permission fixer
|
||||
if [ -x "/usr/local/vesta/upd/fix_vesta_ssl_permissions.sh" ]; then
|
||||
/usr/local/vesta/upd/fix_vesta_ssl_permissions.sh
|
||||
fi
|
||||
|
||||
# Run MySQL autostart fixed
|
||||
if [ -x "/usr/local/vesta/upd/fix_mysql_startup.sh" ]; then
|
||||
/usr/local/vesta/upd/fix_mysql_startup.sh
|
||||
fi
|
||||
|
||||
# Run SUDO trigger
|
||||
if [ -x "/usr/local/vesta/upd/add_sudo.sh" ]; then
|
||||
/usr/local/vesta/upd/add_sudo.sh
|
||||
fi
|
||||
|
||||
# Run Firewall trigger
|
||||
if [ -x "/usr/local/vesta/upd/add_firewall.sh" ]; then
|
||||
/usr/local/vesta/upd/add_firewall.sh
|
||||
# Run Notification trigger
|
||||
if [ -x "/usr/local/vesta/upd/add_notifications.sh" ]; then
|
||||
/usr/local/vesta/upd/add_notifications.sh
|
||||
fi
|
||||
|
||||
|
||||
exit 0
|
||||
|
|
|
@ -490,8 +490,11 @@ env[LANG] = en_US.UTF-8
|
|||
|
||||
; Default Value: nothing is defined by default except the values in php.ini and
|
||||
; specified at startup with the -d argument
|
||||
;php_admin_value[sendmail_path] = /usr/sbin/sendmail -t -i -f www@my.domain.com
|
||||
;php_flag[display_errors] = off
|
||||
;php_admin_value[error_log] = /var/log/fpm-php.www.log
|
||||
;php_admin_flag[log_errors] = on
|
||||
;php_admin_value[memory_limit] = 32M
|
||||
php_flag[display_errors] = off
|
||||
php_admin_value[error_log] = /usr/local/vesta/log/fpm-php.log
|
||||
php_admin_flag[log_errors] = on
|
||||
php_admin_value[memory_limit] = 256M
|
||||
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
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Name: vesta-nginx
|
||||
Version: 0.9.8
|
||||
Release: 3
|
||||
Release: 15
|
||||
Summary: Vesta Control Panel
|
||||
Group: System Environment/Base
|
||||
License: BSD-like
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Name: vesta-php
|
||||
Version: 0.9.8
|
||||
Release: 2
|
||||
Release: 15
|
||||
Summary: Vesta Control Panel
|
||||
Group: System Environment/Base
|
||||
License: GPL
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Name: vesta
|
||||
Version: 0.9.8
|
||||
Release: 14
|
||||
Release: 15
|
||||
Summary: Vesta Control Panel
|
||||
Group: System Environment/Base
|
||||
License: GPL
|
||||
|
@ -30,23 +30,11 @@ rm -rf %{buildroot}
|
|||
|
||||
%post
|
||||
if [ $1 -ge 2 ]; then
|
||||
if [ -e /usr/local/vesta/upd/convert_templates.sh ]; then
|
||||
/usr/local/vesta/upd/convert_templates.sh
|
||||
fi
|
||||
if [ -e /usr/local/vesta/upd/convert_webip.sh ]; then
|
||||
/usr/local/vesta/upd/convert_webip.sh
|
||||
fi
|
||||
if [ -e /usr/local/vesta/upd/add_fwd_only.sh ]; then
|
||||
/usr/local/vesta/upd/add_fwd_only.sh
|
||||
fi
|
||||
if [ -e /usr/local/vesta/upd/fix_vesta_ssl_permissions.sh ]; then
|
||||
/usr/local/vesta/upd/fix_vesta_ssl_permissions.sh
|
||||
fi
|
||||
if [ -e /usr/local/vesta/upd/add_sudo.sh ]; then
|
||||
/usr/local/vesta/upd/add_sudo.sh
|
||||
fi
|
||||
if [ -e /usr/local/vesta/upd/add_firewall.sh ]; then
|
||||
/usr/local/vesta/upd/add_firewall.sh
|
||||
if [ -e /usr/local/vesta/upd/add_notifications.sh ]; then
|
||||
/usr/local/vesta/upd/add_notifications.sh
|
||||
fi
|
||||
fi
|
||||
%files
|
||||
|
@ -62,6 +50,32 @@ fi
|
|||
%config(noreplace) %{_vestadir}/web/css/uploadify.css
|
||||
|
||||
%changelog
|
||||
* Fri Nov 06 2015 Serghey Rodin <builder@vestacp.com> - 0.9.8-15
|
||||
- File Manager (commercial plugin)
|
||||
- SFTP Chroot (commercial plugin)
|
||||
- Monitoring Tools: top/free/df/server-status/mysql-status/etc
|
||||
- New installer
|
||||
- Improved PHP-FPM support
|
||||
- UI: Notification center
|
||||
- UI: Starred objects
|
||||
- UI: Object sorting
|
||||
- UI: HotKeys suport
|
||||
- UI: Mail account settings JS hint
|
||||
- UI: Autofocus on first input when adding/editing
|
||||
- UI: Up to 8 nameserver dns support
|
||||
- Core: Improved system logger, domain adding api and backup routine
|
||||
- Japanese language support. Thanks to Flatta
|
||||
- Polish language support. Thanks to MarPiRK
|
||||
- Vietnamese language support. Thanks to Nguyen Ngoc Phuong
|
||||
- Security Fix: Command Injection and XSS Thanks to Global IT
|
||||
- BugFix: DNS Cluster SOA synchronization
|
||||
- BugFix: Bulk Operation
|
||||
- BugFix: Backup exclusions
|
||||
- BugFix: Domain validation
|
||||
- BugFix: FTP user name prefix
|
||||
- BugFix: Fail2Ban manager
|
||||
- BugFix: Service manager
|
||||
|
||||
* Wed Jun 03 2015 Serghey Rodin <builder@vestacp.com> - 0.9.8-13
|
||||
- New UI
|
||||
- PHP-FPM support
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue