Skip to content

Commit 38b5ec8

Browse files
author
Till Brehm
committed
Merge branch 'stable-3.1' into 'stable-3.1'
Stable 3.1 See merge request ispconfig/ispconfig3!775
2 parents 8e7ddde + 38b5377 commit 38b5ec8

File tree

87 files changed

+184
-69
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+184
-69
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
ALTER TABLE `web_domain` ADD COLUMN `ssl_letsencrypt_exclude` enum('n','y') NOT NULL DEFAULT 'n' AFTER `ssl_letsencrypt`;
22
ALTER TABLE `remote_user` ADD `remote_access` ENUM('y','n') NOT NULL DEFAULT 'y' AFTER `remote_password`;
33
ALTER TABLE `remote_user` ADD `remote_ips` TEXT AFTER `remote_access`;
4+
ALTER TABLE `server_php` ADD `active` enum('y','n') NOT NULL DEFAULT 'y' AFTER `php_fpm_pool_dir`;

install/sql/ispconfig3.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1346,6 +1346,7 @@ CREATE TABLE `server_php` (
13461346
`php_fpm_init_script` varchar(255) DEFAULT NULL,
13471347
`php_fpm_ini_dir` varchar(255) DEFAULT NULL,
13481348
`php_fpm_pool_dir` varchar(255) DEFAULT NULL,
1349+
`active` enum('n','y') NOT NULL DEFAULT 'y',
13491350
PRIMARY KEY (`server_php_id`)
13501351
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
13511352

interface/web/admin/form/server_config.tform.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -814,6 +814,12 @@
814814
'width' => '40',
815815
'maxlength' => '255'
816816
),
817+
'nginx_enable_pagespeed' => array (
818+
'datatype' => 'VARCHAR',
819+
'formtype' => 'CHECKBOX',
820+
'default' => 'n',
821+
'value' => array(0 => 'n',1 => 'y')
822+
),
817823
'nginx_vhost_conf_dir' => array(
818824
'datatype' => 'VARCHAR',
819825
'formtype' => 'TEXT',

interface/web/admin/form/server_php.tform.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,13 @@
124124
'width' => '40',
125125
'maxlength' => '255'
126126
),
127+
'active' => array (
128+
'datatype' => 'VARCHAR',
129+
'formtype' => 'CHECKBOX',
130+
'default' => 'y',
131+
'value' => array(0 => 'n', 1 => 'y')
132+
),
133+
127134
//#################################
128135
// ENDE Datenbankfelder
129136
//#################################

interface/web/admin/lib/lang/ar_server_config.lng

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ $wb['dkim_strength_txt'] = 'DKIM strength';
266266
$wb['php_ini_check_minutes_txt'] = 'Check php.ini every X minutes for changes';
267267
$wb['php_ini_check_minutes_error_empty'] = 'Please specify a value how often php.ini should be checked for changes.';
268268
$wb['php_ini_check_minutes_info_txt'] = '0 = no check';
269-
$wb['enable_spdy_txt'] = 'Makes SPDY available';
269+
$wb['enable_spdy_txt'] = 'Makes SPDY/HTTP2 available';
270270
$wb['web_settings_txt'] = 'Web Server';
271271
$wb['xmpp_server_txt'] = 'XMPP Server';
272272
$wb['xmpp_use_ipv6_txt'] = 'Use IPv6';
@@ -283,4 +283,5 @@ $wb['xmpp_port_bosh_txt'] = 'BOSH';
283283
$wb['backup_time_txt'] = 'Backup time';
284284
$wb['skip_le_check_txt'] = 'Skip Lets Encrypt Check';
285285
$wb['migration_mode_txt'] = 'Server Migration Mode';
286+
$wb['nginx_enable_pagespeed_txt'] = 'Makes Pagespeed available';
286287
?>

interface/web/admin/lib/lang/ar_server_php.lng

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,5 @@ $wb['php_fastcgi_ini_dir_txt'] = 'Path to the php.ini directory';
1313
$wb['php_fpm_init_script_txt'] = 'Path to the PHP-FPM init script';
1414
$wb['php_fpm_ini_dir_txt'] = 'Path to the php.ini directory';
1515
$wb['php_fpm_pool_dir_txt'] = 'Path to the PHP-FPM pool directory';
16+
$wb['active_txt'] = 'Active';
1617
?>

interface/web/admin/lib/lang/bg_server_config.lng

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ $wb['dkim_strength_txt'] = 'DKIM strength';
266266
$wb['php_ini_check_minutes_txt'] = 'Check php.ini every X minutes for changes';
267267
$wb['php_ini_check_minutes_error_empty'] = 'Please specify a value how often php.ini should be checked for changes.';
268268
$wb['php_ini_check_minutes_info_txt'] = '0 = no check';
269-
$wb['enable_spdy_txt'] = 'Makes SPDY available';
269+
$wb['enable_spdy_txt'] = 'Makes SPDY/HTTP2 available';
270270
$wb['web_settings_txt'] = 'Web Server';
271271
$wb['xmpp_server_txt'] = 'XMPP Server';
272272
$wb['xmpp_use_ipv6_txt'] = 'Use IPv6';
@@ -283,4 +283,5 @@ $wb['xmpp_port_bosh_txt'] = 'BOSH';
283283
$wb['backup_time_txt'] = 'Backup time';
284284
$wb['skip_le_check_txt'] = 'Skip Lets Encrypt Check';
285285
$wb['migration_mode_txt'] = 'Server Migration Mode';
286+
$wb['nginx_enable_pagespeed_txt'] = 'Makes Pagespeed available';
286287
?>

interface/web/admin/lib/lang/bg_server_php.lng

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,5 @@ $wb['php_fastcgi_ini_dir_txt'] = 'Path to the php.ini directory';
1313
$wb['php_fpm_init_script_txt'] = 'Path to the PHP-FPM init script';
1414
$wb['php_fpm_ini_dir_txt'] = 'Path to the php.ini directory';
1515
$wb['php_fpm_pool_dir_txt'] = 'Path to the PHP-FPM pool directory';
16+
$wb['active_txt'] = 'Active';
1617
?>

interface/web/admin/lib/lang/br_server_config.lng

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ $wb['dkim_strength_txt'] = 'Dificuldade do DKIM';
266266
$wb['php_ini_check_minutes_txt'] = 'Verificar modificações do php.ini a cada N minutos';
267267
$wb['php_ini_check_minutes_error_empty'] = 'Por favor, insira um valor de quantas vezes o php.ini deve ser verificado por modificações.';
268268
$wb['php_ini_check_minutes_info_txt'] = '0 = sem verificação';
269-
$wb['enable_spdy_txt'] = 'Tornar SPDY disponível';
269+
$wb['enable_spdy_txt'] = 'Tornar SPDY/HTTP2 disponível';
270270
$wb['web_settings_txt'] = 'Servidor de páginas';
271271
$wb['xmpp_server_txt'] = 'Servidor XMPP';
272272
$wb['xmpp_use_ipv6_txt'] = 'Usar IPv6';
@@ -283,4 +283,5 @@ $wb['xmpp_port_bosh_txt'] = 'BOSH';
283283
$wb['backup_time_txt'] = 'Hora do backup';
284284
$wb['skip_le_check_txt'] = 'Ignorar verificação do Lets Encrypt';
285285
$wb['migration_mode_txt'] = 'Habilitar modo de migração do servidor';
286+
$wb['nginx_enable_pagespeed_txt'] = 'Makes Pagespeed available';
286287
?>

interface/web/admin/lib/lang/br_server_php.lng

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,5 @@ $wb['php_fastcgi_ini_dir_txt'] = 'Caminho do diretório do php.ini';
1313
$wb['php_fpm_init_script_txt'] = 'Caminho do script de inicialização do PHP-FPM';
1414
$wb['php_fpm_ini_dir_txt'] = 'Caminho do diretório do php.ini';
1515
$wb['php_fpm_pool_dir_txt'] = 'Caminho do diretório de faixas (pool) do PHP-FPM';
16+
$wb['active_txt'] = 'Active';
1617
?>

0 commit comments

Comments
 (0)