Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
Open sidebar
ISPConfig
ISPConfig 3
Commits
71902663
Unverified
Commit
71902663
authored
May 14, 2022
by
Helmo
Browse files
Merge remote-tracking branch 'origin/develop' into 6230-patch-copy-to-clipboard
parents
4a9f875f
221728d6
Changes
542
Hide whitespace changes
Inline
Side-by-side
.gitignore
View file @
71902663
.DS_Store
.idea
/nbproject/private/
.phplint-cache
*.swp
# macOS-specific things to exclude
# General
.DS_Store
.AppleDouble
.LSOverride
# Icon must end with two \r
Icon
Icon?
# Thumbnails
._*
# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent
# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
# Configuration for the Nova editor
.nova
\ No newline at end of file
docs/autoinstall_samples/autoinstall.conf_sample.php
View file @
71902663
...
...
@@ -29,7 +29,7 @@ $autoinstall['ssl_cert_email'] = 'hostmaster@'.$autoinstall['hostname'];
/* optional expert mode settings, needed only for expert mode */
$autoinstall
[
'mysql_ispconfig_user'
]
=
'ispconfig'
;
// default: ispconfig
$autoinstall
[
'mysql_ispconfig_password'
]
=
md5
(
uniqid
(
rand
()
));
$autoinstall
[
'mysql_ispconfig_password'
]
=
bin2hex
(
random_bytes
(
20
));
$autoinstall
[
'join_multiserver_setup'
]
=
'n'
;
// y, n (default)
$autoinstall
[
'mysql_master_hostname'
]
=
'master.example.com'
;
$autoinstall
[
'mysql_master_root_user'
]
=
'root'
;
...
...
@@ -70,4 +70,4 @@ $autoupdate['svc_detect_change_firewall_server'] = 'yes'; // yes (default), no
$autoupdate
[
'svc_detect_change_vserver_server'
]
=
'yes'
;
// yes (default), no
$autoupdate
[
'svc_detect_change_db_server'
]
=
'yes'
;
// yes (default), no
?>
\ No newline at end of file
?>
install/dist/conf/centos52.conf.php
View file @
71902663
...
...
@@ -221,4 +221,7 @@ $conf['cron']['wget'] = '/usr/bin/wget';
//* OpenVZ
$conf
[
'openvz'
][
'installed'
]
=
false
;
// AppArmor
$conf
[
'apparmor'
][
'installed'
]
=
false
;
?>
install/dist/conf/centos53.conf.php
View file @
71902663
...
...
@@ -221,4 +221,7 @@ $conf['cron']['wget'] = '/usr/bin/wget';
//* OpenVZ
$conf
[
'openvz'
][
'installed'
]
=
false
;
// AppArmor
$conf
[
'apparmor'
][
'installed'
]
=
false
;
?>
install/dist/conf/centos70.conf.php
View file @
71902663
...
...
@@ -221,4 +221,7 @@ $conf['cron']['wget'] = '/usr/bin/wget';
//* OpenVZ
$conf
[
'openvz'
][
'installed'
]
=
false
;
// AppArmor
$conf
[
'apparmor'
][
'installed'
]
=
false
;
?>
install/dist/conf/centos72.conf.php
View file @
71902663
...
...
@@ -224,4 +224,7 @@ $conf['cron']['wget'] = '/usr/bin/wget';
//* OpenVZ
$conf
[
'openvz'
][
'installed'
]
=
false
;
// AppArmor
$conf
[
'apparmor'
][
'installed'
]
=
false
;
?>
install/dist/conf/centos80.conf.php
View file @
71902663
...
...
@@ -63,14 +63,14 @@ $conf['mysql']['admin_user'] = 'root';
$conf
[
'mysql'
][
'admin_password'
]
=
''
;
$conf
[
'mysql'
][
'charset'
]
=
'utf8'
;
$conf
[
'mysql'
][
'ispconfig_user'
]
=
'ispconfig'
;
$conf
[
'mysql'
][
'ispconfig_password'
]
=
md5
(
uniqid
(
rand
()
));
$conf
[
'mysql'
][
'ispconfig_password'
]
=
md5
(
random_bytes
(
20
));
$conf
[
'mysql'
][
'master_slave_setup'
]
=
'n'
;
$conf
[
'mysql'
][
'master_host'
]
=
''
;
$conf
[
'mysql'
][
'master_database'
]
=
'dbispconfig'
;
$conf
[
'mysql'
][
'master_admin_user'
]
=
'root'
;
$conf
[
'mysql'
][
'master_admin_password'
]
=
''
;
$conf
[
'mysql'
][
'master_ispconfig_user'
]
=
''
;
$conf
[
'mysql'
][
'master_ispconfig_password'
]
=
md5
(
uniqid
(
rand
()
));
$conf
[
'mysql'
][
'master_ispconfig_password'
]
=
md5
(
random_bytes
(
20
));
//* Apache
$conf
[
'apache'
][
'installed'
]
=
false
;
// will be detected automatically during installation
...
...
@@ -224,4 +224,7 @@ $conf['cron']['wget'] = '/usr/bin/wget';
//* OpenVZ
$conf
[
'openvz'
][
'installed'
]
=
false
;
// AppArmor
$conf
[
'apparmor'
][
'installed'
]
=
false
;
?>
install/dist/conf/debian100.conf.php
View file @
71902663
...
...
@@ -65,14 +65,14 @@ $conf['mysql']['admin_user'] = 'root';
$conf
[
'mysql'
][
'admin_password'
]
=
''
;
$conf
[
'mysql'
][
'charset'
]
=
'utf8'
;
$conf
[
'mysql'
][
'ispconfig_user'
]
=
'ispconfig'
;
$conf
[
'mysql'
][
'ispconfig_password'
]
=
md5
(
uniqid
(
rand
()
));
$conf
[
'mysql'
][
'ispconfig_password'
]
=
md5
(
random_bytes
(
20
));
$conf
[
'mysql'
][
'master_slave_setup'
]
=
'n'
;
$conf
[
'mysql'
][
'master_host'
]
=
''
;
$conf
[
'mysql'
][
'master_database'
]
=
'dbispconfig'
;
$conf
[
'mysql'
][
'master_admin_user'
]
=
'root'
;
$conf
[
'mysql'
][
'master_admin_password'
]
=
''
;
$conf
[
'mysql'
][
'master_ispconfig_user'
]
=
''
;
$conf
[
'mysql'
][
'master_ispconfig_password'
]
=
md5
(
uniqid
(
rand
()
));
$conf
[
'mysql'
][
'master_ispconfig_password'
]
=
md5
(
random_bytes
(
20
));
//* Apache
$conf
[
'apache'
][
'installed'
]
=
false
;
// will be detected automatically during installation
...
...
@@ -236,4 +236,7 @@ $conf['xmpp']['installed'] = false;
$conf
[
'xmpp'
][
'init_script'
]
=
'metronome'
;
// AppArmor
$conf
[
'apparmor'
][
'installed'
]
=
false
;
?>
install/dist/conf/debian110.conf.php
View file @
71902663
...
...
@@ -65,14 +65,14 @@ $conf['mysql']['admin_user'] = 'root';
$conf
[
'mysql'
][
'admin_password'
]
=
''
;
$conf
[
'mysql'
][
'charset'
]
=
'utf8'
;
$conf
[
'mysql'
][
'ispconfig_user'
]
=
'ispconfig'
;
$conf
[
'mysql'
][
'ispconfig_password'
]
=
md5
(
uniqid
(
rand
()
));
$conf
[
'mysql'
][
'ispconfig_password'
]
=
md5
(
random_bytes
(
20
));
$conf
[
'mysql'
][
'master_slave_setup'
]
=
'n'
;
$conf
[
'mysql'
][
'master_host'
]
=
''
;
$conf
[
'mysql'
][
'master_database'
]
=
'dbispconfig'
;
$conf
[
'mysql'
][
'master_admin_user'
]
=
'root'
;
$conf
[
'mysql'
][
'master_admin_password'
]
=
''
;
$conf
[
'mysql'
][
'master_ispconfig_user'
]
=
''
;
$conf
[
'mysql'
][
'master_ispconfig_password'
]
=
md5
(
uniqid
(
rand
()
));
$conf
[
'mysql'
][
'master_ispconfig_password'
]
=
md5
(
random_bytes
(
20
));
//* Apache
$conf
[
'apache'
][
'installed'
]
=
false
;
// will be detected automatically during installation
...
...
@@ -236,4 +236,7 @@ $conf['xmpp']['installed'] = false;
$conf
[
'xmpp'
][
'init_script'
]
=
'metronome'
;
// AppArmor
$conf
[
'apparmor'
][
'installed'
]
=
false
;
?>
install/dist/conf/debian40.conf.php
View file @
71902663
...
...
@@ -229,4 +229,7 @@ $conf['cron']['wget'] = '/usr/bin/wget';
$conf
[
'openvz'
][
'installed'
]
=
false
;
// AppArmor
$conf
[
'apparmor'
][
'installed'
]
=
false
;
?>
install/dist/conf/debian60.conf.php
View file @
71902663
...
...
@@ -232,4 +232,7 @@ $conf['xmpp']['installed'] = false;
$conf
[
'xmpp'
][
'init_script'
]
=
'metronome'
;
// AppArmor
$conf
[
'apparmor'
][
'installed'
]
=
false
;
?>
install/dist/conf/debian90.conf.php
View file @
71902663
...
...
@@ -65,14 +65,14 @@ $conf['mysql']['admin_user'] = 'root';
$conf
[
'mysql'
][
'admin_password'
]
=
''
;
$conf
[
'mysql'
][
'charset'
]
=
'utf8'
;
$conf
[
'mysql'
][
'ispconfig_user'
]
=
'ispconfig'
;
$conf
[
'mysql'
][
'ispconfig_password'
]
=
md5
(
uniqid
(
rand
()
));
$conf
[
'mysql'
][
'ispconfig_password'
]
=
md5
(
random_bytes
(
20
));
$conf
[
'mysql'
][
'master_slave_setup'
]
=
'n'
;
$conf
[
'mysql'
][
'master_host'
]
=
''
;
$conf
[
'mysql'
][
'master_database'
]
=
'dbispconfig'
;
$conf
[
'mysql'
][
'master_admin_user'
]
=
'root'
;
$conf
[
'mysql'
][
'master_admin_password'
]
=
''
;
$conf
[
'mysql'
][
'master_ispconfig_user'
]
=
''
;
$conf
[
'mysql'
][
'master_ispconfig_password'
]
=
md5
(
uniqid
(
rand
()
));
$conf
[
'mysql'
][
'master_ispconfig_password'
]
=
md5
(
random_bytes
(
20
));
//* Apache
$conf
[
'apache'
][
'installed'
]
=
false
;
// will be detected automatically during installation
...
...
@@ -236,4 +236,7 @@ $conf['xmpp']['installed'] = false;
$conf
[
'xmpp'
][
'init_script'
]
=
'metronome'
;
// AppArmor
$conf
[
'apparmor'
][
'installed'
]
=
false
;
?>
install/dist/conf/debiantesting.conf.php
View file @
71902663
...
...
@@ -65,14 +65,14 @@ $conf['mysql']['admin_user'] = 'root';
$conf
[
'mysql'
][
'admin_password'
]
=
''
;
$conf
[
'mysql'
][
'charset'
]
=
'utf8'
;
$conf
[
'mysql'
][
'ispconfig_user'
]
=
'ispconfig'
;
$conf
[
'mysql'
][
'ispconfig_password'
]
=
md5
(
uniqid
(
rand
()
));
$conf
[
'mysql'
][
'ispconfig_password'
]
=
md5
(
random_bytes
(
20
));
$conf
[
'mysql'
][
'master_slave_setup'
]
=
'n'
;
$conf
[
'mysql'
][
'master_host'
]
=
''
;
$conf
[
'mysql'
][
'master_database'
]
=
'dbispconfig'
;
$conf
[
'mysql'
][
'master_admin_user'
]
=
'root'
;
$conf
[
'mysql'
][
'master_admin_password'
]
=
''
;
$conf
[
'mysql'
][
'master_ispconfig_user'
]
=
''
;
$conf
[
'mysql'
][
'master_ispconfig_password'
]
=
md5
(
uniqid
(
rand
()
));
$conf
[
'mysql'
][
'master_ispconfig_password'
]
=
md5
(
random_bytes
(
20
));
//* Apache
$conf
[
'apache'
][
'installed'
]
=
false
;
// will be detected automatically during installation
...
...
@@ -236,4 +236,7 @@ $conf['xmpp']['installed'] = false;
$conf
[
'xmpp'
][
'init_script'
]
=
'metronome'
;
// AppArmor
$conf
[
'apparmor'
][
'installed'
]
=
false
;
?>
install/dist/conf/fedora32.conf.php
View file @
71902663
...
...
@@ -226,4 +226,7 @@ $conf['cron']['wget'] = '/usr/bin/wget';
//* OpenVZ
$conf
[
'openvz'
][
'installed'
]
=
false
;
// AppArmor
$conf
[
'apparmor'
][
'installed'
]
=
false
;
?>
install/dist/conf/fedora33.conf.php
View file @
71902663
...
...
@@ -226,4 +226,7 @@ $conf['cron']['wget'] = '/usr/bin/wget';
//* OpenVZ
$conf
[
'openvz'
][
'installed'
]
=
false
;
// AppArmor
$conf
[
'apparmor'
][
'installed'
]
=
false
;
?>
install/dist/conf/fedora9.conf.php
View file @
71902663
...
...
@@ -221,4 +221,7 @@ $conf['cron']['wget'] = '/usr/bin/wget';
//* OpenVZ
$conf
[
'openvz'
][
'installed'
]
=
false
;
// AppArmor
$conf
[
'apparmor'
][
'installed'
]
=
false
;
?>
install/dist/conf/gentoo.conf.php
View file @
71902663
...
...
@@ -63,14 +63,14 @@ $conf['mysql']['admin_user'] = 'root';
$conf
[
'mysql'
][
'admin_password'
]
=
''
;
$conf
[
'mysql'
][
'charset'
]
=
'utf8'
;
$conf
[
'mysql'
][
'ispconfig_user'
]
=
'ispconfig'
;
$conf
[
'mysql'
][
'ispconfig_password'
]
=
md5
(
uniqid
(
rand
()
));
$conf
[
'mysql'
][
'ispconfig_password'
]
=
md5
(
random_bytes
(
20
));
$conf
[
'mysql'
][
'master_slave_setup'
]
=
'n'
;
$conf
[
'mysql'
][
'master_host'
]
=
''
;
$conf
[
'mysql'
][
'master_database'
]
=
'dbispconfig'
;
$conf
[
'mysql'
][
'master_admin_user'
]
=
'root'
;
$conf
[
'mysql'
][
'master_admin_password'
]
=
''
;
$conf
[
'mysql'
][
'master_ispconfig_user'
]
=
''
;
$conf
[
'mysql'
][
'master_ispconfig_password'
]
=
md5
(
uniqid
(
rand
()
));
$conf
[
'mysql'
][
'master_ispconfig_password'
]
=
md5
(
random_bytes
(
20
));
//* SuPHP
$conf
[
'suphp'
][
'config_file'
]
=
'/etc/suphp.conf'
;
...
...
@@ -238,4 +238,7 @@ $conf['cron']['wget'] = '/usr/bin/wget';
//* OpenVZ
$conf
[
'openvz'
][
'installed'
]
=
false
;
// AppArmor
$conf
[
'apparmor'
][
'installed'
]
=
false
;
?>
install/dist/conf/opensuse110.conf.php
View file @
71902663
...
...
@@ -221,4 +221,7 @@ $conf['cron']['wget'] = '/usr/bin/wget';;
//* OpenVZ
$conf
[
'openvz'
][
'installed'
]
=
false
;
// AppArmor
$conf
[
'apparmor'
][
'installed'
]
=
false
;
?>
install/dist/conf/opensuse112.conf.php
View file @
71902663
...
...
@@ -221,4 +221,7 @@ $conf['cron']['wget'] = '/usr/bin/wget';
//* OpenVZ
$conf
[
'openvz'
][
'installed'
]
=
false
;
// AppArmor
$conf
[
'apparmor'
][
'installed'
]
=
false
;
?>
install/dist/conf/ubuntu1604.conf.php
View file @
71902663
...
...
@@ -65,14 +65,14 @@ $conf['mysql']['admin_user'] = 'root';
$conf
[
'mysql'
][
'admin_password'
]
=
''
;
$conf
[
'mysql'
][
'charset'
]
=
'utf8'
;
$conf
[
'mysql'
][
'ispconfig_user'
]
=
'ispconfig'
;
$conf
[
'mysql'
][
'ispconfig_password'
]
=
md5
(
uniqid
(
rand
()
));
$conf
[
'mysql'
][
'ispconfig_password'
]
=
md5
(
random_bytes
(
20
));
$conf
[
'mysql'
][
'master_slave_setup'
]
=
'n'
;
$conf
[
'mysql'
][
'master_host'
]
=
''
;
$conf
[
'mysql'
][
'master_database'
]
=
'dbispconfig'
;
$conf
[
'mysql'
][
'master_admin_user'
]
=
'root'
;
$conf
[
'mysql'
][
'master_admin_password'
]
=
''
;
$conf
[
'mysql'
][
'master_ispconfig_user'
]
=
''
;
$conf
[
'mysql'
][
'master_ispconfig_password'
]
=
md5
(
uniqid
(
rand
()
));
$conf
[
'mysql'
][
'master_ispconfig_password'
]
=
md5
(
random_bytes
(
20
));
//* Apache
$conf
[
'apache'
][
'installed'
]
=
false
;
// will be detected automatically during installation
...
...
@@ -232,4 +232,7 @@ $conf['xmpp']['installed'] = false;
$conf
[
'xmpp'
][
'init_script'
]
=
'metronome'
;
// AppArmor
$conf
[
'apparmor'
][
'installed'
]
=
false
;
?>
Prev
1
2
3
4
5
…
28
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment