├── apache.letsencrypt.conf ├── .gitignore ├── nginx.conf.patch ├── _todo ├── cli.ini ├── README.md ├── install.php └── src ├── interface └── web │ └── sites │ ├── lib │ └── lang │ │ ├── ja_web_domain.lng │ │ ├── hu_web_domain.lng │ │ ├── hr_web_domain.lng │ │ ├── ru_web_domain.lng │ │ ├── it_web_domain.lng │ │ ├── tr_web_domain.lng │ │ ├── se_web_domain.lng │ │ ├── ar_web_domain.lng │ │ ├── bg_web_domain.lng │ │ ├── sk_web_domain.lng │ │ ├── cz_web_domain.lng │ │ ├── ro_web_domain.lng │ │ ├── en_web_domain.lng │ │ ├── id_web_domain.lng │ │ ├── pt_web_domain.lng │ │ ├── nl_web_domain.lng │ │ ├── fi_web_domain.lng │ │ ├── br_web_domain.lng │ │ ├── pl_web_domain.lng │ │ ├── el_web_domain.lng │ │ ├── es_web_domain.lng │ │ ├── de_web_domain.lng │ │ └── fr_web_domain.lng │ └── templates │ └── web_domain_edit.htm └── server └── conf └── nginx_vhost.conf.master /apache.letsencrypt.conf: -------------------------------------------------------------------------------- 1 | 2 | 3 | Header set Content-Type "text/plain" 4 | 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # https://git-scm.com/docs/gitignore 2 | # https://help.github.com/articles/ignoring-files 3 | # Example .gitignore files: https://github.com/github/gitignore 4 | /bower_components/ 5 | /node_modules/ -------------------------------------------------------------------------------- /nginx.conf.patch: -------------------------------------------------------------------------------- 1 | --- /etc/nginx/nginx.conf.orig 2015-11-08 02:10:51.275908452 +0100 2 | +++ /etc/nginx/nginx.conf 2015-12-01 17:52:11.275908452 +0100 3 | @@ -9,6 +9,12 @@ 4 | 5 | http { 6 | 7 | + server { 8 | + location ~ /.well-known/acme-challenge/(.*) { 9 | + default_type text/plain; 10 | + } 11 | + } 12 | + 13 | ## 14 | # Basic Settings 15 | ## 16 | -------------------------------------------------------------------------------- /_todo: -------------------------------------------------------------------------------- 1 | check dns entry is correct before request to Let's Encrypt (apache and nginx plugin) 2 | check dns MX entry is correct before request to Let's Encrypt (apache and nginx plugin) 3 | check if we already have a symlink and if he's valid (apache and nginx plugin) 4 | force ssl field to on when use Let's Encrypt (api access?) 5 | disable ssl tab when use Let's Encrypt (webgui) 6 | improve email policy 7 | check if is a symlink and is correct (if target is same) 8 | disable ssl & letsencrypt fields in database if we have error (and show notification?) 9 | -------------------------------------------------------------------------------- /cli.ini: -------------------------------------------------------------------------------- 1 | # This is an example of the kind of things you can do in a configuration file. 2 | # All flags used by the client can be configured here. Run Let's Encrypt with 3 | # "--help" to learn more about the available options. 4 | 5 | # Use a 4096 bit RSA key instead of 2048 6 | rsa-key-size = 4096 7 | 8 | # Always use the staging/testing server 9 | #server = https://acme-staging.api.letsencrypt.org/directory 10 | 11 | # Uncomment and update to register with the specified e-mail address 12 | # email = foo@example.com 13 | 14 | # Uncomment to use a text interface instead of ncurses 15 | # text = True 16 | 17 | # Uncomment to use the standalone authenticator on port 443 18 | # authenticator = standalone 19 | # standalone-supported-challenges = dvsni 20 | 21 | # Uncomment to use the webroot authenticator. Replace webroot-path with the 22 | # path to the public_html / webroot folder being served by your web server. 23 | # authenticator = webroot 24 | # webroot-path = /usr/share/nginx/html 25 | 26 | text = True 27 | agree-tos = True 28 | authenticator = webroot 29 | server = https://acme-v01.api.letsencrypt.org/directory 30 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ISPConfig Let's Encrypt 2 | ========================= 3 | 4 | Don't use this plugin with ISPConfig 3.1 (or newer), this plugin is natively included. 5 | 6 | # REQUIREMENTS 7 | 8 | Let's Encrypt installed 9 | 10 | ISPConfig (select version in branche) 11 | 12 | Apache or Nginx 13 | 14 | 15 | # INSTALLATION (as root) 16 | 17 | ``` 18 | git clone https://github.com/alexalouit/ISPConfig-letsencrypt.git 19 | cd ISPConfig-letsencrypt 20 | php -q install.php 21 | ``` 22 | 23 | After install, a new checkbox will be available in editing website, just check it. 24 | 25 | Adjust server in ```/etc/letsencrypt/cli.ini```if isn't ``https://acme-v01.api.letsencrypt.org/directory``` 26 | 27 | 28 | ## MANUAL INSTALLATION 29 | 30 | - make your own backup! 31 | 32 | - go to dir 33 | ``` 34 | cd ISPConfig-letsencrypt 35 | ``` 36 | 37 | - create Let's Encrypt configuration 38 | ``` 39 | cp ./cli.ini /etc/letsencrypt/cli.ini 40 | ``` 41 | 42 | - patch ISPConfig (merge all files from ./src to /usr/local/ispconfig) 43 | ``` 44 | rsync -av ./src/ /usr/local/ispconfig/ 45 | ``` 46 | 47 | - prepare apache 48 | ``` 49 | cp ./apache.letsencrypt.conf /etc/apache2/conf-available/letsencrypt.conf 50 | a2enmod headers 51 | a2enconf letsencrypt 52 | service apache2 reload 53 | ``` 54 | 55 | - prepare nginx 56 | ``` 57 | patch /etc/nginx/nginx.conf < ./nginx.conf.patch 58 | service nginx reload 59 | ``` 60 | 61 | - create a cron for automatic renewal: 62 | ``` 63 | crontab -e 64 | 30 02 * * * /root/.local/share/letsencrypt/bin/letsencrypt renew >> /var/log/ispconfig/cron.log 65 | ``` 66 | 67 | - sql queries: 68 | ``` 69 | ALTER TABLE `web_domain` ADD `ssl_letsencrypt` enum('n','y') NOT NULL DEFAULT 'n'; 70 | ``` 71 | 72 | 73 | ## TROUBLESHOOTING 74 | 75 | update Let's Encrypt 76 | ``` 77 | cd /root/letsencrypt 78 | git fetch 79 | ./letsencrypt-auto 80 | ``` 81 | 82 | see Let's Encrypt log 83 | ``` 84 | cat /var/log/letsencrypt/letsencrypt.log 85 | ``` 86 | 87 | see ISPConfig log 88 | ``` 89 | cat /var/log/ispconfig/ispconfig.log 90 | cat /var/log/ispconfig/cron.log 91 | ``` 92 | 93 | remove certs 94 | ``` 95 | rm -r /etc/letsencrypt/archive/$domain/ 96 | rm -r /etc/letsencrypt/live/$domain/ 97 | rm -r /etc/letsencrypt/renewal/$domain.conf 98 | ``` 99 | 100 | re-generate cert: uncheck SSL & Let's Encrypt, save, recheck and save 101 | -------------------------------------------------------------------------------- /install.php: -------------------------------------------------------------------------------- 1 | 5 | All rights reserved. 6 | 7 | Redistribution and use in source and binary forms, with or without 8 | modification, are permitted provided that the following conditions are met: 9 | 10 | * Redistributions of source code must retain the above copyright notice, this 11 | list of conditions and the following disclaimer. 12 | 13 | * Redistributions in binary form must reproduce the above copyright notice, 14 | this list of conditions and the following disclaimer in the documentation 15 | and/or other materials provided with the distribution. 16 | 17 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 18 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 19 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 20 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE 21 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 22 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 23 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 24 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 25 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 26 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 | */ 28 | 29 | $backup_dir = "/var/backup/"; 30 | $backup_file = date("Ymdhis")."-ISPConfig-letsencrypt.tar.gz"; 31 | $backup_file2 = date("Ymdhis")."-cronjob.txt"; 32 | 33 | if(!file_exists("/usr/local/ispconfig/server/lib/config.inc.php") OR !file_exists("/usr/local/ispconfig/server/lib/mysql_clientdb.conf")) { 34 | echo "ERROR: Unable to load the ISPConfig defaut configuration files.\n"; 35 | exit; 36 | } 37 | 38 | require_once "/usr/local/ispconfig/server/lib/config.inc.php"; 39 | require_once "/usr/local/ispconfig/server/lib/mysql_clientdb.conf"; 40 | 41 | if($conf["app_version"] != "3.0.5.4p8" && $conf['app_version'] != "3.0.5.4p9") { 42 | echo "ERROR: This version is unsupported.\n"; 43 | exit; 44 | } 45 | 46 | if(!file_exists($backup_dir)) { 47 | echo "Backup directory not found.\n"; 48 | mkdir($backup_dir, 0700); 49 | } 50 | 51 | if(!file_exists($backup_dir)) { 52 | echo "ERROR: Create it, and relaunch me!\n"; 53 | exit; 54 | } 55 | 56 | if(getcwd() != realpath(dirname(__FILE__))) { 57 | echo "ERROR: Run me in current installer directory!\n"; 58 | exit; 59 | } 60 | 61 | echo "Create backup on " . $backup_dir . " directory\n"; 62 | 63 | exec("/bin/tar -czf " . $backup_dir . $backup_file . " /usr/local/ispconfig"); 64 | 65 | if(!file_exists($backup_dir . $backup_file )) { 66 | echo "ERROR: There was a problem with the backup file.\n"; 67 | exit; 68 | } 69 | 70 | echo "Backup finished\n"; 71 | 72 | if(!is_dir("/etc/letsencrypt")) { 73 | echo "ERROR: Let's Encrypt directory ( /etc/letsencrypt/ ) is missing, install it corecctly!\n"; 74 | exit; 75 | } 76 | 77 | if(!is_file("/root/.local/share/letsencrypt/bin/letsencrypt")) { 78 | echo "ERROR: Let's Encrypt ( /root/.local/share/letsencrypt/bin/letsencrypt ) is missing, install it corecctly!\n"; 79 | exit; 80 | } 81 | /* 82 | if(!is_file("/root/.local/share/letsencrypt/bin/letsencrypt-renewer")) { 83 | echo "ERROR: Let's Encrypt ( /root/.local/share/letsencrypt/bin/letsencrypt-renewer ) is missing, install it corecctly!\n"; 84 | exit; 85 | } 86 | */ 87 | if(is_file("/etc/letsencrypt/cli.ini")) { 88 | echo "Let's Encrypt configuration file exist, backup up and remove.\n"; 89 | exec("cp /etc/letsencrypt/cli.ini " . $backup_dir . date("Ymdhis") . "-letsencrypt.cli.ini"); 90 | exec("rm /etc/letsencrypt/cli.ini"); 91 | 92 | } 93 | echo "Copy Let's Encrypt configuration.\n"; 94 | exec("cp ./cli.ini /etc/letsencrypt/cli.ini"); 95 | 96 | if(!$buffer = mysql_connect($clientdb_host, $clientdb_user, $clientdb_password)) { 97 | echo "ERROR: There was a problem with the MySQL connection.\n"; 98 | exit; 99 | } 100 | 101 | echo "Start MySQL update..\n"; 102 | mysql_db_query($conf['db_database'], "ALTER TABLE `web_domain` ADD `ssl_letsencrypt` enum('n','y') NOT NULL DEFAULT 'n';", $buffer); 103 | 104 | if(is_file("/etc/apache2/apache2.conf")) { 105 | echo "Configure Apache and reload it.\n"; 106 | if(is_dir("/etc/apache2/conf-available")) { 107 | if(is_file("/etc/apache2/conf-available/letsencrypt.conf")) { 108 | exec("rm /etc/apache2/conf-available/letsencrypt.conf"); 109 | } 110 | exec("cp ./apache.letsencrypt.conf /etc/apache2/conf-available/letsencrypt.conf"); 111 | } 112 | if(is_dir("/etc/apache2/conf.d")) { 113 | if(is_file("/etc/apache2/conf.d/letsencrypt.conf")) { 114 | exec("rm /etc/apache2/conf.d/letsencrypt.conf"); 115 | } 116 | exec("cp ./apache.letsencrypt.conf /etc/apache2/conf.d/letsencrypt.conf"); 117 | } 118 | exec("a2enmod headers"); 119 | exec("a2enconf letsencrypt"); 120 | exec("service apache2 reload"); 121 | } 122 | 123 | if(is_file("/etc/nginx/nginx.conf")) { 124 | echo "Backup Nginx file to " . $backup_dir . ".\n"; 125 | exec("cp /etc/nginx/nginx.conf " . $backup_dir . date("Ymdhis") . "-nginx.conf"); 126 | echo "Patch Nginx and reload it.\n"; 127 | exec("patch /etc/nginx/nginx.conf < ./nginx.conf.patch"); 128 | exec("service nginx reload"); 129 | } 130 | 131 | echo "Create backup cronjob on " . $backup_dir . " directory\n"; 132 | exec("crontab -l >> " . $backup_dir . $backup_file2); 133 | if(!file_exists($backup_dir . $backup_file2 )) { 134 | echo "ERROR: There was a problem with the cronjob backup file.\n"; 135 | exit; 136 | } 137 | 138 | exec("crontab -l", $output); 139 | 140 | if(!in_array("30 02 * * * /root/.local/share/letsencrypt/bin/letsencrypt renew >> /var/log/ispconfig/cron.log;", $output)) { 141 | echo "Add a cronjob for renewal certs\n"; 142 | 143 | $output[] = "30 02 * * * /root/.local/share/letsencrypt/bin/letsencrypt renew >> /var/log/ispconfig/cron.log;"; 144 | 145 | exec("touch ./crontab.tmp"); 146 | if(!is_file("./crontab.tmp")) { 147 | echo "ERROR: Unable to create temporary crontab file.\n"; 148 | exit; 149 | } 150 | 151 | foreach($output as $line) { 152 | exec("echo '" . $line . "' >> ./crontab.tmp"); 153 | } 154 | 155 | /* 156 | exec("cat ./crontab.tmp", $crontab); 157 | 158 | $diff = array_diff($output, $crontab); 159 | if(empty($diff)) { 160 | exec("crontab ./crontab.tmp"); 161 | exec("rm ./crontab.tmp"); 162 | } else { 163 | echo "ERROR: There was a problem with the cronjob temporary file.\n"; 164 | exit; 165 | } 166 | */ 167 | exec("crontab ./crontab.tmp"); 168 | exec("rm ./crontab.tmp"); 169 | } else { 170 | echo "Renewer already present in crontab.\n"; 171 | } 172 | 173 | echo "And finally, update ISPConfig.\n"; 174 | 175 | if(!is_file("/usr/bin/rsync")) { 176 | echo "ERROR: Unable to find rsync binary, install it or merge ./src to /usr/local/ispconfig manually.\n"; 177 | exit; 178 | } 179 | 180 | exec("rsync -av ./src/ /usr/local/ispconfig"); 181 | 182 | echo "Done my job. Enjoy!\n"; 183 | exit; 184 | ?> 185 | -------------------------------------------------------------------------------- /src/interface/web/sites/lib/lang/ja_web_domain.lng: -------------------------------------------------------------------------------- 1 | = 0.'; 103 | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; 104 | $wb['generate_password_txt'] = 'Generate Password'; 105 | $wb['repeat_password_txt'] = 'Repeat Password'; 106 | $wb['password_mismatch_txt'] = 'The passwords do not match.'; 107 | $wb['password_match_txt'] = 'The passwords do match.'; 108 | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; 109 | $wb['domain_error_autosub'] = 'There is already a subdomain with these settings.'; 110 | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; 111 | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; 112 | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; 113 | $wb['proxy_directives_txt'] = 'Proxy Directives'; 114 | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; 115 | $wb['no_server_error'] = 'No server selected.'; 116 | $wb['no_backup_txt'] = 'No backup'; 117 | $wb['daily_backup_txt'] = 'Daily'; 118 | $wb['weekly_backup_txt'] = 'Weekly'; 119 | $wb['monthly_backup_txt'] = 'Monthly'; 120 | $wb['rewrite_rules_txt'] = 'Rewrite Rules'; 121 | $wb['invalid_rewrite_rules_txt'] = 'Invalid Rewrite Rules'; 122 | $wb['allowed_rewrite_rule_directives_txt'] = 'Allowed Directives:'; 123 | $wb['configuration_error_txt'] = 'CONFIGURATION ERROR'; 124 | $wb['variables_txt'] = 'Variables'; 125 | $wb['added_by_txt'] = 'Added by'; 126 | $wb['added_date_txt'] = 'Added date'; 127 | $wb['backup_excludes_txt'] = 'Excluded Directories'; 128 | $wb['backup_excludes_note_txt'] = '(Separate multiple directories with commas. Example: web/cache/*,web/backup)'; 129 | $wb['backup_excludes_error_regex'] = 'The excluded directories contain invalid characters.'; 130 | $wb['invalid_custom_php_ini_settings_txt'] = 'Invalid php.ini settings'; 131 | $wb['invalid_system_user_or_group_txt'] = 'Invalid system user or group'; 132 | $wb['apache_directive_blocked_error'] = 'Apache directive blocked by security settings:'; 133 | ?> 134 | -------------------------------------------------------------------------------- /src/interface/web/sites/lib/lang/hu_web_domain.lng: -------------------------------------------------------------------------------- 1 | = 0.'; 103 | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; 104 | $wb['generate_password_txt'] = 'Generate Password'; 105 | $wb['repeat_password_txt'] = 'Repeat Password'; 106 | $wb['password_mismatch_txt'] = 'The passwords do not match.'; 107 | $wb['password_match_txt'] = 'The passwords do match.'; 108 | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; 109 | $wb['domain_error_autosub'] = 'There is already a subdomain with these settings.'; 110 | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; 111 | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; 112 | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; 113 | $wb['proxy_directives_txt'] = 'Proxy Directives'; 114 | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; 115 | $wb['no_server_error'] = 'No server selected.'; 116 | $wb['no_backup_txt'] = 'No backup'; 117 | $wb['daily_backup_txt'] = 'Daily'; 118 | $wb['weekly_backup_txt'] = 'Weekly'; 119 | $wb['monthly_backup_txt'] = 'Monthly'; 120 | $wb['rewrite_rules_txt'] = 'Rewrite Rules'; 121 | $wb['invalid_rewrite_rules_txt'] = 'Invalid Rewrite Rules'; 122 | $wb['allowed_rewrite_rule_directives_txt'] = 'Allowed Directives:'; 123 | $wb['configuration_error_txt'] = 'CONFIGURATION ERROR'; 124 | $wb['variables_txt'] = 'Variables'; 125 | $wb['added_by_txt'] = 'Added by'; 126 | $wb['added_date_txt'] = 'Added date'; 127 | $wb['backup_excludes_txt'] = 'Excluded Directories'; 128 | $wb['backup_excludes_note_txt'] = '(Separate multiple directories with commas. Example: web/cache/*,web/backup)'; 129 | $wb['backup_excludes_error_regex'] = 'The excluded directories contain invalid characters.'; 130 | $wb['invalid_custom_php_ini_settings_txt'] = 'Invalid php.ini settings'; 131 | $wb['invalid_system_user_or_group_txt'] = 'Invalid system user or group'; 132 | $wb['apache_directive_blocked_error'] = 'Apache directive blocked by security settings:'; 133 | ?> 134 | -------------------------------------------------------------------------------- /src/interface/web/sites/lib/lang/hr_web_domain.lng: -------------------------------------------------------------------------------- 1 | www'; 80 | $wb['www_to_non_www_txt'] = 'www -> non-www'; 81 | $wb['php_fpm_use_socket_txt'] = 'Koristi socket za PHP-FPM'; 82 | $wb['error_no_sni_txt'] = 'SNI za SSL nije aktiviran na ovom serveru. Možete omogućiti samo jedan SSL certifikat na svakoj IP adresi.'; 83 | $wb['python_txt'] = 'Python'; 84 | $wb['pm_max_children_txt'] = 'PHP-FPM pm.max_children'; 85 | $wb['pm_start_servers_txt'] = 'PHP-FPM pm.start_servers'; 86 | $wb['pm_min_spare_servers_txt'] = 'PHP-FPM pm.min_spare_servers'; 87 | $wb['pm_max_spare_servers_txt'] = 'PHP-FPM pm.max_spare_servers'; 88 | $wb['error_php_fpm_pm_settings_txt'] = 'Vrijednosti PHP-FPM pm postavki moraju biti slijedeće: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; 89 | $wb['pm_max_children_error_regex'] = 'PHP-FPM pm.max_children mora biti pozitivan broj.'; 90 | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers mora biti pozitivan broj.'; 91 | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers mora biti pozitivan broj.'; 92 | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers mora biti pozitivan broj.'; 93 | $wb['hd_quota_error_regex'] = 'Harddisk quota is invalid.'; 94 | $wb['traffic_quota_error_regex'] = 'Traffic quota is invalid.'; 95 | $wb['ssl_key_txt'] = 'SSL Key'; 96 | $wb['perl_txt'] = 'Perl'; 97 | $wb['fastcgi_php_version_txt'] = 'PHP Version'; 98 | $wb['pm_txt'] = 'PHP-FPM Process Manager'; 99 | $wb['pm_process_idle_timeout_txt'] = 'PHP-FPM pm.process_idle_timeout'; 100 | $wb['pm_max_requests_txt'] = 'PHP-FPM pm.max_requests'; 101 | $wb['pm_process_idle_timeout_error_regex'] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; 102 | $wb['pm_max_requests_error_regex'] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; 103 | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; 104 | $wb['generate_password_txt'] = 'Generiraj šifru'; 105 | $wb['repeat_password_txt'] = 'Ponovi šifru'; 106 | $wb['password_mismatch_txt'] = 'Šifre nisu identične.'; 107 | $wb['password_match_txt'] = 'Šifre su identične.'; 108 | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; 109 | $wb['domain_error_autosub'] = 'Već postoji poddomena sa ovim postavkama.'; 110 | $wb['available_php_directive_snippets_txt'] = 'Dostupne PHP direktive:'; 111 | $wb['available_apache_directive_snippets_txt'] = 'Dostupne Apache direktive:'; 112 | $wb['available_nginx_directive_snippets_txt'] = 'Dostupne nginx direktive:'; 113 | $wb['proxy_directives_txt'] = 'Proxy direktive'; 114 | $wb['available_proxy_directive_snippets_txt'] = 'Dostupne Proxy direktive:'; 115 | $wb['no_server_error'] = 'Nije izabran server.'; 116 | $wb['no_backup_txt'] = 'Bez backup-a'; 117 | $wb['daily_backup_txt'] = 'Dnevni backup'; 118 | $wb['weekly_backup_txt'] = 'Tjedni backup'; 119 | $wb['monthly_backup_txt'] = 'Mjesečni backup'; 120 | $wb['rewrite_rules_txt'] = 'Rewrite pravila'; 121 | $wb['invalid_rewrite_rules_txt'] = 'Neispravna Rewrite pravila'; 122 | $wb['allowed_rewrite_rule_directives_txt'] = 'Dozvoljene direktive:'; 123 | $wb['configuration_error_txt'] = 'KONFIGURACIJSKA GREŠKA'; 124 | $wb['variables_txt'] = 'Varijable'; 125 | $wb['added_by_txt'] = 'Dodao'; 126 | $wb['added_date_txt'] = 'Dodano'; 127 | $wb['backup_excludes_txt'] = 'Izbačeni direktoriji'; 128 | $wb['backup_excludes_note_txt'] = '(Separate multiple directories with commas. Example: web/cache/*,web/backup)'; 129 | $wb['backup_excludes_error_regex'] = 'Izbačeni direktorij sadrži nedozvoljene znakove.'; 130 | $wb['invalid_custom_php_ini_settings_txt'] = 'Neispravne php.ini postavke'; 131 | $wb['invalid_system_user_or_group_txt'] = 'Invalid system user or group'; 132 | ?> 133 | 134 | 135 | -------------------------------------------------------------------------------- /src/interface/web/sites/lib/lang/ru_web_domain.lng: -------------------------------------------------------------------------------- 1 | = 0.'; 103 | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; 104 | $wb['generate_password_txt'] = 'Generate Password'; 105 | $wb['repeat_password_txt'] = 'Repeat Password'; 106 | $wb['password_mismatch_txt'] = 'The passwords do not match.'; 107 | $wb['password_match_txt'] = 'The passwords do match.'; 108 | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; 109 | $wb['domain_error_autosub'] = 'There is already a subdomain with these settings.'; 110 | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; 111 | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; 112 | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; 113 | $wb['proxy_directives_txt'] = 'Proxy Directives'; 114 | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; 115 | $wb['no_server_error'] = 'No server selected.'; 116 | $wb['no_backup_txt'] = 'No backup'; 117 | $wb['daily_backup_txt'] = 'Daily'; 118 | $wb['weekly_backup_txt'] = 'Weekly'; 119 | $wb['monthly_backup_txt'] = 'Monthly'; 120 | $wb['rewrite_rules_txt'] = 'Rewrite Rules'; 121 | $wb['invalid_rewrite_rules_txt'] = 'Invalid Rewrite Rules'; 122 | $wb['allowed_rewrite_rule_directives_txt'] = 'Allowed Directives:'; 123 | $wb['configuration_error_txt'] = 'CONFIGURATION ERROR'; 124 | $wb['variables_txt'] = 'Variables'; 125 | $wb['added_by_txt'] = 'Added by'; 126 | $wb['added_date_txt'] = 'Added date'; 127 | $wb['backup_excludes_txt'] = 'Excluded Directories'; 128 | $wb['backup_excludes_note_txt'] = '(Separate multiple directories with commas. Example: web/cache/*,web/backup)'; 129 | $wb['backup_excludes_error_regex'] = 'The excluded directories contain invalid characters.'; 130 | $wb['invalid_custom_php_ini_settings_txt'] = 'Invalid php.ini settings'; 131 | $wb['invalid_system_user_or_group_txt'] = 'Invalid system user or group'; 132 | $wb['apache_directive_blocked_error'] = 'Apache directive blocked by security settings:'; 133 | ?> 134 | -------------------------------------------------------------------------------- /src/interface/web/sites/lib/lang/it_web_domain.lng: -------------------------------------------------------------------------------- 1 | = 0.'; 103 | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; 104 | $wb['generate_password_txt'] = 'Generate Password'; 105 | $wb['repeat_password_txt'] = 'Repeat Password'; 106 | $wb['password_mismatch_txt'] = 'The passwords do not match.'; 107 | $wb['password_match_txt'] = 'The passwords do match.'; 108 | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; 109 | $wb['domain_error_autosub'] = 'There is already a subdomain with these settings.'; 110 | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; 111 | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; 112 | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; 113 | $wb['proxy_directives_txt'] = 'Proxy Directives'; 114 | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; 115 | $wb['no_server_error'] = 'No server selected.'; 116 | $wb['no_backup_txt'] = 'No backup'; 117 | $wb['daily_backup_txt'] = 'Daily'; 118 | $wb['weekly_backup_txt'] = 'Weekly'; 119 | $wb['monthly_backup_txt'] = 'Monthly'; 120 | $wb['rewrite_rules_txt'] = 'Rewrite Rules'; 121 | $wb['invalid_rewrite_rules_txt'] = 'Invalid Rewrite Rules'; 122 | $wb['allowed_rewrite_rule_directives_txt'] = 'Allowed Directives:'; 123 | $wb['configuration_error_txt'] = 'CONFIGURATION ERROR'; 124 | $wb['variables_txt'] = 'Variables'; 125 | $wb['added_by_txt'] = 'Added by'; 126 | $wb['added_date_txt'] = 'Added date'; 127 | $wb['backup_excludes_txt'] = 'Excluded Directories'; 128 | $wb['backup_excludes_note_txt'] = '(Separate multiple directories with commas. Example: web/cache/*,web/backup)'; 129 | $wb['backup_excludes_error_regex'] = 'The excluded directories contain invalid characters.'; 130 | $wb['invalid_custom_php_ini_settings_txt'] = 'Invalid php.ini settings'; 131 | $wb['invalid_system_user_or_group_txt'] = 'Invalid system user or group'; 132 | $wb['apache_directive_blocked_error'] = 'Apache directive blocked by security settings:'; 133 | ?> 134 | -------------------------------------------------------------------------------- /src/interface/web/sites/lib/lang/tr_web_domain.lng: -------------------------------------------------------------------------------- 1 | = 0.'; 103 | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; 104 | $wb['generate_password_txt'] = 'Generate Password'; 105 | $wb['repeat_password_txt'] = 'Repeat Password'; 106 | $wb['password_mismatch_txt'] = 'The passwords do not match.'; 107 | $wb['password_match_txt'] = 'The passwords do match.'; 108 | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; 109 | $wb['domain_error_autosub'] = 'There is already a subdomain with these settings.'; 110 | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; 111 | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; 112 | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; 113 | $wb['proxy_directives_txt'] = 'Proxy Directives'; 114 | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; 115 | $wb['no_server_error'] = 'No server selected.'; 116 | $wb['no_backup_txt'] = 'No backup'; 117 | $wb['daily_backup_txt'] = 'Daily'; 118 | $wb['weekly_backup_txt'] = 'Weekly'; 119 | $wb['monthly_backup_txt'] = 'Monthly'; 120 | $wb['rewrite_rules_txt'] = 'Rewrite Rules'; 121 | $wb['invalid_rewrite_rules_txt'] = 'Invalid Rewrite Rules'; 122 | $wb['allowed_rewrite_rule_directives_txt'] = 'Allowed Directives:'; 123 | $wb['configuration_error_txt'] = 'CONFIGURATION ERROR'; 124 | $wb['variables_txt'] = 'Variables'; 125 | $wb['added_by_txt'] = 'Added by'; 126 | $wb['added_date_txt'] = 'Added date'; 127 | $wb['backup_excludes_txt'] = 'Excluded Directories'; 128 | $wb['backup_excludes_note_txt'] = '(Separate multiple directories with commas. Example: web/cache/*,web/backup)'; 129 | $wb['backup_excludes_error_regex'] = 'The excluded directories contain invalid characters.'; 130 | $wb['invalid_custom_php_ini_settings_txt'] = 'Invalid php.ini settings'; 131 | $wb['invalid_system_user_or_group_txt'] = 'Invalid system user or group'; 132 | $wb['apache_directive_blocked_error'] = 'Apache directive blocked by security settings:'; 133 | ?> 134 | -------------------------------------------------------------------------------- /src/interface/web/sites/lib/lang/se_web_domain.lng: -------------------------------------------------------------------------------- 1 | = 0.'; 103 | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; 104 | $wb['generate_password_txt'] = 'Generate Password'; 105 | $wb['repeat_password_txt'] = 'Repeat Password'; 106 | $wb['password_mismatch_txt'] = 'The passwords do not match.'; 107 | $wb['password_match_txt'] = 'The passwords do match.'; 108 | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; 109 | $wb['domain_error_autosub'] = 'There is already a subdomain with these settings.'; 110 | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; 111 | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; 112 | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; 113 | $wb['proxy_directives_txt'] = 'Proxy Directives'; 114 | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; 115 | $wb['no_server_error'] = 'Ingen server vald'; 116 | $wb['no_backup_txt'] = 'Ingen backup'; 117 | $wb['daily_backup_txt'] = 'Daglig'; 118 | $wb['weekly_backup_txt'] = 'Veckovis'; 119 | $wb['monthly_backup_txt'] = 'Månatlig'; 120 | $wb['rewrite_rules_txt'] = 'Omskrivningsregler'; 121 | $wb['invalid_rewrite_rules_txt'] = 'Ogiltiga omskrivningsregler'; 122 | $wb['allowed_rewrite_rule_directives_txt'] = 'Allowed Directives:'; 123 | $wb['configuration_error_txt'] = 'CONFIGURATION ERROR'; 124 | $wb['variables_txt'] = 'Variabler'; 125 | $wb['added_by_txt'] = 'Tillagd av'; 126 | $wb['added_date_txt'] = 'Tillagd datum'; 127 | $wb['backup_excludes_txt'] = 'Excluded Directories'; 128 | $wb['backup_excludes_note_txt'] = '(Separate multiple directories with commas. Example: web/cache/*,web/backup)'; 129 | $wb['backup_excludes_error_regex'] = 'The excluded directories contain invalid characters.'; 130 | $wb['invalid_custom_php_ini_settings_txt'] = 'Ogiltiga php.ini-inställningar'; 131 | $wb['invalid_system_user_or_group_txt'] = 'Invalid system user or group'; 132 | $wb['apache_directive_blocked_error'] = 'Apache directive blocked by security settings:'; 133 | ?> 134 | -------------------------------------------------------------------------------- /src/interface/web/sites/lib/lang/ar_web_domain.lng: -------------------------------------------------------------------------------- 1 | = 0.'; 103 | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; 104 | $wb['generate_password_txt'] = 'Generate Password'; 105 | $wb['repeat_password_txt'] = 'Repeat Password'; 106 | $wb['password_mismatch_txt'] = 'The passwords do not match.'; 107 | $wb['password_match_txt'] = 'The passwords do match.'; 108 | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; 109 | $wb['domain_error_autosub'] = 'There is already a subdomain with these settings.'; 110 | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; 111 | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; 112 | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; 113 | $wb['proxy_directives_txt'] = 'Proxy Directives'; 114 | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; 115 | $wb['no_server_error'] = 'No server selected.'; 116 | $wb['no_backup_txt'] = 'No backup'; 117 | $wb['daily_backup_txt'] = 'Daily'; 118 | $wb['weekly_backup_txt'] = 'Weekly'; 119 | $wb['monthly_backup_txt'] = 'Monthly'; 120 | $wb['rewrite_rules_txt'] = 'Rewrite Rules'; 121 | $wb['invalid_rewrite_rules_txt'] = 'Invalid Rewrite Rules'; 122 | $wb['allowed_rewrite_rule_directives_txt'] = 'Allowed Directives:'; 123 | $wb['configuration_error_txt'] = 'CONFIGURATION ERROR'; 124 | $wb['variables_txt'] = 'Variables'; 125 | $wb['added_by_txt'] = 'Added by'; 126 | $wb['added_date_txt'] = 'Added date'; 127 | $wb['backup_excludes_txt'] = 'Excluded Directories'; 128 | $wb['backup_excludes_note_txt'] = '(Separate multiple directories with commas. Example: web/cache/*,web/backup)'; 129 | $wb['backup_excludes_error_regex'] = 'The excluded directories contain invalid characters.'; 130 | $wb['invalid_custom_php_ini_settings_txt'] = 'Invalid php.ini settings'; 131 | $wb['invalid_system_user_or_group_txt'] = 'Invalid system user or group'; 132 | $wb['apache_directive_blocked_error'] = 'Apache directive blocked by security settings:'; 133 | ?> 134 | -------------------------------------------------------------------------------- /src/interface/web/sites/lib/lang/bg_web_domain.lng: -------------------------------------------------------------------------------- 1 | = 0.'; 101 | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; 102 | $wb['generate_password_txt'] = 'Generate Password'; 103 | $wb['repeat_password_txt'] = 'Repeat Password'; 104 | $wb['password_mismatch_txt'] = 'The passwords do not match.'; 105 | $wb['password_match_txt'] = 'The passwords do match.'; 106 | $wb['ssl_key_txt'] = 'SSL Key'; 107 | $wb['perl_txt'] = 'Perl'; 108 | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; 109 | $wb['domain_error_autosub'] = 'There is already a subdomain with these settings.'; 110 | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; 111 | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; 112 | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; 113 | $wb['proxy_directives_txt'] = 'Proxy Directives'; 114 | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; 115 | $wb['no_server_error'] = 'No server selected.'; 116 | $wb['no_backup_txt'] = 'No backup'; 117 | $wb['daily_backup_txt'] = 'Daily'; 118 | $wb['weekly_backup_txt'] = 'Weekly'; 119 | $wb['monthly_backup_txt'] = 'Monthly'; 120 | $wb['rewrite_rules_txt'] = 'Rewrite Rules'; 121 | $wb['invalid_rewrite_rules_txt'] = 'Invalid Rewrite Rules'; 122 | $wb['allowed_rewrite_rule_directives_txt'] = 'Allowed Directives:'; 123 | $wb['configuration_error_txt'] = 'CONFIGURATION ERROR'; 124 | $wb['variables_txt'] = 'Variables'; 125 | $wb['added_by_txt'] = 'Added by'; 126 | $wb['added_date_txt'] = 'Added date'; 127 | $wb['backup_excludes_txt'] = 'Excluded Directories'; 128 | $wb['backup_excludes_note_txt'] = '(Separate multiple directories with commas. Example: web/cache/*,web/backup)'; 129 | $wb['backup_excludes_error_regex'] = 'The excluded directories contain invalid characters.'; 130 | $wb['invalid_custom_php_ini_settings_txt'] = 'Invalid php.ini settings'; 131 | $wb['invalid_system_user_or_group_txt'] = 'Invalid system user or group'; 132 | $wb['apache_directive_blocked_error'] = 'Apache directive blocked by security settings:'; 133 | ?> 134 | -------------------------------------------------------------------------------- /src/interface/web/sites/lib/lang/sk_web_domain.lng: -------------------------------------------------------------------------------- 1 | = 0.'; 103 | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; 104 | $wb['generate_password_txt'] = 'Generate Password'; 105 | $wb['repeat_password_txt'] = 'Repeat Password'; 106 | $wb['password_mismatch_txt'] = 'The passwords do not match.'; 107 | $wb['password_match_txt'] = 'The passwords do match.'; 108 | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; 109 | $wb['domain_error_autosub'] = 'There is already a subdomain with these settings.'; 110 | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; 111 | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; 112 | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; 113 | $wb['proxy_directives_txt'] = 'Proxy Directives'; 114 | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; 115 | $wb['no_server_error'] = 'No server selected.'; 116 | $wb['no_backup_txt'] = 'No backup'; 117 | $wb['daily_backup_txt'] = 'Daily'; 118 | $wb['weekly_backup_txt'] = 'Weekly'; 119 | $wb['monthly_backup_txt'] = 'Monthly'; 120 | $wb['rewrite_rules_txt'] = 'Rewrite Rules'; 121 | $wb['invalid_rewrite_rules_txt'] = 'Invalid Rewrite Rules'; 122 | $wb['allowed_rewrite_rule_directives_txt'] = 'Allowed Directives:'; 123 | $wb['configuration_error_txt'] = 'CONFIGURATION ERROR'; 124 | $wb['variables_txt'] = 'Variables'; 125 | $wb['added_by_txt'] = 'Added by'; 126 | $wb['added_date_txt'] = 'Added date'; 127 | $wb['backup_excludes_txt'] = 'Excluded Directories'; 128 | $wb['backup_excludes_note_txt'] = '(Separate multiple directories with commas. Example: web/cache/*,web/backup)'; 129 | $wb['backup_excludes_error_regex'] = 'The excluded directories contain invalid characters.'; 130 | $wb['invalid_custom_php_ini_settings_txt'] = 'Invalid php.ini settings'; 131 | $wb['invalid_system_user_or_group_txt'] = 'Invalid system user or group'; 132 | $wb['apache_directive_blocked_error'] = 'Apache directive blocked by security settings:'; 133 | ?> 134 | -------------------------------------------------------------------------------- /src/interface/web/sites/lib/lang/cz_web_domain.lng: -------------------------------------------------------------------------------- 1 | = 0.'; 103 | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; 104 | $wb['generate_password_txt'] = 'Generovat heslo'; 105 | $wb['repeat_password_txt'] = 'Opakujte heslo'; 106 | $wb['password_mismatch_txt'] = 'Hesla se neshodují.'; 107 | $wb['password_match_txt'] = 'Hesla se shodují.'; 108 | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; 109 | $wb['domain_error_autosub'] = 'There is already a subdomain with these settings.'; 110 | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; 111 | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; 112 | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; 113 | $wb['proxy_directives_txt'] = 'Proxy Directives'; 114 | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; 115 | $wb['no_server_error'] = 'Nebyl zvolen žádný server'; 116 | $wb['no_backup_txt'] = 'Žádné zálohování'; 117 | $wb['daily_backup_txt'] = 'Denně'; 118 | $wb['weekly_backup_txt'] = 'Týdně'; 119 | $wb['monthly_backup_txt'] = 'Měsíčně'; 120 | $wb['rewrite_rules_txt'] = 'Rewrite Rules'; 121 | $wb['invalid_rewrite_rules_txt'] = 'Invalid Rewrite Rules'; 122 | $wb['allowed_rewrite_rule_directives_txt'] = 'Allowed Directives:'; 123 | $wb['configuration_error_txt'] = 'CONFIGURATION ERROR'; 124 | $wb['variables_txt'] = 'Proměnné'; 125 | $wb['added_by_txt'] = 'Kdo vytvořil účet'; 126 | $wb['added_date_txt'] = 'Datum vytvoření účtu'; 127 | $wb['backup_excludes_txt'] = 'Vyloučené adresáře'; 128 | $wb['backup_excludes_note_txt'] = '(Oddělte více adresářů čárkami. Vzor: web/cache/*,web/backup)'; 129 | $wb['backup_excludes_error_regex'] = 'Vyloučené adresáře obsahují neplatné znaky.'; 130 | $wb['invalid_custom_php_ini_settings_txt'] = 'Neplatné nastavení php.ini'; 131 | $wb['invalid_system_user_or_group_txt'] = 'Invalid system user or group'; 132 | ?> 133 | 134 | -------------------------------------------------------------------------------- /src/interface/web/sites/lib/lang/ro_web_domain.lng: -------------------------------------------------------------------------------- 1 | = 0.'; 103 | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; 104 | $wb['generate_password_txt'] = 'Generate Password'; 105 | $wb['repeat_password_txt'] = 'Repeat Password'; 106 | $wb['password_mismatch_txt'] = 'The passwords do not match.'; 107 | $wb['password_match_txt'] = 'The passwords do match.'; 108 | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; 109 | $wb['domain_error_autosub'] = 'There is already a subdomain with these settings.'; 110 | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; 111 | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; 112 | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; 113 | $wb['proxy_directives_txt'] = 'Proxy Directives'; 114 | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; 115 | $wb['no_server_error'] = 'No server selected.'; 116 | $wb['no_backup_txt'] = 'No backup'; 117 | $wb['daily_backup_txt'] = 'Daily'; 118 | $wb['weekly_backup_txt'] = 'Weekly'; 119 | $wb['monthly_backup_txt'] = 'Monthly'; 120 | $wb['rewrite_rules_txt'] = 'Rewrite Rules'; 121 | $wb['invalid_rewrite_rules_txt'] = 'Invalid Rewrite Rules'; 122 | $wb['allowed_rewrite_rule_directives_txt'] = 'Allowed Directives:'; 123 | $wb['configuration_error_txt'] = 'CONFIGURATION ERROR'; 124 | $wb['variables_txt'] = 'Variables'; 125 | $wb['added_by_txt'] = 'Added by'; 126 | $wb['added_date_txt'] = 'Added date'; 127 | $wb['backup_excludes_txt'] = 'Excluded Directories'; 128 | $wb['backup_excludes_note_txt'] = '(Separate multiple directories with commas. Example: web/cache/*,web/backup)'; 129 | $wb['backup_excludes_error_regex'] = 'The excluded directories contain invalid characters.'; 130 | $wb['invalid_custom_php_ini_settings_txt'] = 'Invalid php.ini settings'; 131 | $wb['invalid_system_user_or_group_txt'] = 'Invalid system user or group'; 132 | $wb['apache_directive_blocked_error'] = 'Apache directive blocked by security settings:'; 133 | ?> 134 | -------------------------------------------------------------------------------- /src/interface/web/sites/lib/lang/en_web_domain.lng: -------------------------------------------------------------------------------- 1 | = 0.'; 105 | $wb["pm_ondemand_hint_txt"] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; 106 | $wb['generate_password_txt'] = 'Generate Password'; 107 | $wb['repeat_password_txt'] = 'Repeat Password'; 108 | $wb['password_mismatch_txt'] = 'The passwords do not match.'; 109 | $wb['password_match_txt'] = 'The passwords do match.'; 110 | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; 111 | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; 112 | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; 113 | $wb['proxy_directives_txt'] = 'Proxy Directives'; 114 | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; 115 | $wb['no_server_error'] = 'No server selected.'; 116 | $wb['no_backup_txt'] = 'No backup'; 117 | $wb['daily_backup_txt'] = 'Daily'; 118 | $wb['weekly_backup_txt'] = 'Weekly'; 119 | $wb['monthly_backup_txt'] = 'Monthly'; 120 | $wb['rewrite_rules_txt'] = 'Rewrite Rules'; 121 | $wb['invalid_rewrite_rules_txt'] = 'Invalid Rewrite Rules'; 122 | $wb['allowed_rewrite_rule_directives_txt'] = 'Allowed Directives:'; 123 | $wb['configuration_error_txt'] = "CONFIGURATION ERROR"; 124 | $wb['variables_txt'] = 'Variables'; 125 | $wb['added_by_txt'] = 'Added by'; 126 | $wb['added_date_txt'] = 'Added date'; 127 | $wb['backup_excludes_txt'] = 'Excluded Directories'; 128 | $wb['backup_excludes_note_txt'] = '(Separate multiple directories with commas. Example: web/cache/*,web/backup)'; 129 | $wb['backup_excludes_error_regex'] = 'The excluded directories contain invalid characters.'; 130 | $wb['invalid_custom_php_ini_settings_txt'] = 'Invalid php.ini settings'; 131 | $wb['invalid_system_user_or_group_txt'] = 'Invalid system user or group'; 132 | $wb['apache_directive_blocked_error'] = 'Apache directive blocked by security settings:'; 133 | ?> -------------------------------------------------------------------------------- /src/interface/web/sites/lib/lang/id_web_domain.lng: -------------------------------------------------------------------------------- 1 | = 0.'; 103 | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; 104 | $wb['generate_password_txt'] = 'Generate Password'; 105 | $wb['repeat_password_txt'] = 'Repeat Password'; 106 | $wb['password_mismatch_txt'] = 'The passwords do not match.'; 107 | $wb['password_match_txt'] = 'The passwords do match.'; 108 | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; 109 | $wb['domain_error_autosub'] = 'There is already a subdomain with these settings.'; 110 | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; 111 | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; 112 | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; 113 | $wb['proxy_directives_txt'] = 'Proxy Directives'; 114 | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; 115 | $wb['no_server_error'] = 'No server selected.'; 116 | $wb['no_backup_txt'] = 'No backup'; 117 | $wb['daily_backup_txt'] = 'Daily'; 118 | $wb['weekly_backup_txt'] = 'Weekly'; 119 | $wb['monthly_backup_txt'] = 'Monthly'; 120 | $wb['rewrite_rules_txt'] = 'Rewrite Rules'; 121 | $wb['invalid_rewrite_rules_txt'] = 'Invalid Rewrite Rules'; 122 | $wb['allowed_rewrite_rule_directives_txt'] = 'Allowed Directives:'; 123 | $wb['configuration_error_txt'] = 'CONFIGURATION ERROR'; 124 | $wb['variables_txt'] = 'Variables'; 125 | $wb['added_by_txt'] = 'Added by'; 126 | $wb['added_date_txt'] = 'Added date'; 127 | $wb['backup_excludes_txt'] = 'Excluded Directories'; 128 | $wb['backup_excludes_note_txt'] = '(Separate multiple directories with commas. Example: web/cache/*,web/backup)'; 129 | $wb['backup_excludes_error_regex'] = 'The excluded directories contain invalid characters.'; 130 | $wb['invalid_custom_php_ini_settings_txt'] = 'Invalid php.ini settings'; 131 | $wb['invalid_system_user_or_group_txt'] = 'Invalid system user or group'; 132 | $wb['apache_directive_blocked_error'] = 'Apache directive blocked by security settings:'; 133 | ?> 134 | -------------------------------------------------------------------------------- /src/interface/web/sites/lib/lang/pt_web_domain.lng: -------------------------------------------------------------------------------- 1 | = 0.'; 103 | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; 104 | $wb['generate_password_txt'] = 'Generate Password'; 105 | $wb['repeat_password_txt'] = 'Repeat Password'; 106 | $wb['password_mismatch_txt'] = 'The passwords do not match.'; 107 | $wb['password_match_txt'] = 'The passwords do match.'; 108 | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; 109 | $wb['domain_error_autosub'] = 'There is already a subdomain with these settings.'; 110 | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; 111 | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; 112 | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; 113 | $wb['proxy_directives_txt'] = 'Proxy Directives'; 114 | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; 115 | $wb['no_server_error'] = 'No server selected.'; 116 | $wb['no_backup_txt'] = 'No backup'; 117 | $wb['daily_backup_txt'] = 'Daily'; 118 | $wb['weekly_backup_txt'] = 'Weekly'; 119 | $wb['monthly_backup_txt'] = 'Monthly'; 120 | $wb['rewrite_rules_txt'] = 'Rewrite Rules'; 121 | $wb['invalid_rewrite_rules_txt'] = 'Invalid Rewrite Rules'; 122 | $wb['allowed_rewrite_rule_directives_txt'] = 'Allowed Directives:'; 123 | $wb['configuration_error_txt'] = 'CONFIGURATION ERROR'; 124 | $wb['variables_txt'] = 'Variables'; 125 | $wb['added_by_txt'] = 'Added by'; 126 | $wb['added_date_txt'] = 'Added date'; 127 | $wb['backup_excludes_txt'] = 'Excluded Directories'; 128 | $wb['backup_excludes_note_txt'] = '(Separate multiple directories with commas. Example: web/cache/*,web/backup)'; 129 | $wb['backup_excludes_error_regex'] = 'The excluded directories contain invalid characters.'; 130 | $wb['invalid_custom_php_ini_settings_txt'] = 'Invalid php.ini settings'; 131 | $wb['invalid_system_user_or_group_txt'] = 'Invalid system user or group'; 132 | $wb['apache_directive_blocked_error'] = 'Apache directive blocked by security settings:'; 133 | ?> 134 | -------------------------------------------------------------------------------- /src/interface/web/sites/lib/lang/nl_web_domain.lng: -------------------------------------------------------------------------------- 1 | = 0.'; 103 | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; 104 | $wb['generate_password_txt'] = 'Generate Password'; 105 | $wb['repeat_password_txt'] = 'Repeat Password'; 106 | $wb['password_mismatch_txt'] = 'The passwords do not match.'; 107 | $wb['password_match_txt'] = 'The passwords do match.'; 108 | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; 109 | $wb['domain_error_autosub'] = 'There is already a subdomain with these settings.'; 110 | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; 111 | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; 112 | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; 113 | $wb['proxy_directives_txt'] = 'Proxy Directives'; 114 | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; 115 | $wb['no_server_error'] = 'No server selected.'; 116 | $wb['no_backup_txt'] = 'No backup'; 117 | $wb['daily_backup_txt'] = 'Daily'; 118 | $wb['weekly_backup_txt'] = 'Weekly'; 119 | $wb['monthly_backup_txt'] = 'Monthly'; 120 | $wb['rewrite_rules_txt'] = 'Rewrite Rules'; 121 | $wb['invalid_rewrite_rules_txt'] = 'Invalid Rewrite Rules'; 122 | $wb['allowed_rewrite_rule_directives_txt'] = 'Allowed Directives:'; 123 | $wb['configuration_error_txt'] = 'CONFIGURATION ERROR'; 124 | $wb['variables_txt'] = 'Variables'; 125 | $wb['added_by_txt'] = 'Added by'; 126 | $wb['added_date_txt'] = 'Added date'; 127 | $wb['backup_excludes_txt'] = 'Excluded Directories'; 128 | $wb['backup_excludes_note_txt'] = '(Separate multiple directories with commas. Example: web/cache/*,web/backup)'; 129 | $wb['backup_excludes_error_regex'] = 'The excluded directories contain invalid characters.'; 130 | $wb['invalid_custom_php_ini_settings_txt'] = 'Invalid php.ini settings'; 131 | $wb['invalid_system_user_or_group_txt'] = 'Invalid system user or group'; 132 | $wb['apache_directive_blocked_error'] = 'Apache directive blocked by security settings:'; 133 | ?> 134 | -------------------------------------------------------------------------------- /src/interface/web/sites/lib/lang/fi_web_domain.lng: -------------------------------------------------------------------------------- 1 | = 0.'; 103 | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; 104 | $wb['generate_password_txt'] = 'Generate Password'; 105 | $wb['repeat_password_txt'] = 'Repeat Password'; 106 | $wb['password_mismatch_txt'] = 'The passwords do not match.'; 107 | $wb['password_match_txt'] = 'The passwords do match.'; 108 | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; 109 | $wb['domain_error_autosub'] = 'There is already a subdomain with these settings.'; 110 | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; 111 | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; 112 | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; 113 | $wb['proxy_directives_txt'] = 'Proxy Directives'; 114 | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; 115 | $wb['no_server_error'] = 'No server selected.'; 116 | $wb['no_backup_txt'] = 'No backup'; 117 | $wb['daily_backup_txt'] = 'Daily'; 118 | $wb['weekly_backup_txt'] = 'Weekly'; 119 | $wb['monthly_backup_txt'] = 'Monthly'; 120 | $wb['rewrite_rules_txt'] = 'Rewrite Rules'; 121 | $wb['invalid_rewrite_rules_txt'] = 'Invalid Rewrite Rules'; 122 | $wb['allowed_rewrite_rule_directives_txt'] = 'Allowed Directives:'; 123 | $wb['configuration_error_txt'] = 'CONFIGURATION ERROR'; 124 | $wb['variables_txt'] = 'Variables'; 125 | $wb['added_by_txt'] = 'Added by'; 126 | $wb['added_date_txt'] = 'Added date'; 127 | $wb['backup_excludes_txt'] = 'Excluded Directories'; 128 | $wb['backup_excludes_note_txt'] = '(Separate multiple directories with commas. Example: web/cache/*,web/backup)'; 129 | $wb['backup_excludes_error_regex'] = 'The excluded directories contain invalid characters.'; 130 | $wb['invalid_custom_php_ini_settings_txt'] = 'Invalid php.ini settings'; 131 | $wb['invalid_system_user_or_group_txt'] = 'Invalid system user or group'; 132 | $wb['apache_directive_blocked_error'] = 'Apache directive blocked by security settings:'; 133 | ?> 134 | -------------------------------------------------------------------------------- /src/interface/web/sites/lib/lang/br_web_domain.lng: -------------------------------------------------------------------------------- 1 | = 0.'; 103 | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; 104 | $wb['generate_password_txt'] = 'Generate Password'; 105 | $wb['repeat_password_txt'] = 'Repeat Password'; 106 | $wb['password_mismatch_txt'] = 'The passwords do not match.'; 107 | $wb['password_match_txt'] = 'The passwords do match.'; 108 | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; 109 | $wb['domain_error_autosub'] = 'There is already a subdomain with these settings.'; 110 | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; 111 | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; 112 | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; 113 | $wb['proxy_directives_txt'] = 'Proxy Directives'; 114 | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; 115 | $wb['no_server_error'] = 'No server selected.'; 116 | $wb['no_backup_txt'] = 'No backup'; 117 | $wb['daily_backup_txt'] = 'Daily'; 118 | $wb['weekly_backup_txt'] = 'Weekly'; 119 | $wb['monthly_backup_txt'] = 'Monthly'; 120 | $wb['rewrite_rules_txt'] = 'Rewrite Rules'; 121 | $wb['invalid_rewrite_rules_txt'] = 'Invalid Rewrite Rules'; 122 | $wb['allowed_rewrite_rule_directives_txt'] = 'Allowed Directives:'; 123 | $wb['configuration_error_txt'] = 'CONFIGURATION ERROR'; 124 | $wb['variables_txt'] = 'Variables'; 125 | $wb['added_by_txt'] = 'Added by'; 126 | $wb['added_date_txt'] = 'Added date'; 127 | $wb['backup_excludes_txt'] = 'Excluded Directories'; 128 | $wb['backup_excludes_note_txt'] = '(Separate multiple directories with commas. Example: web/cache/*,web/backup)'; 129 | $wb['backup_excludes_error_regex'] = 'The excluded directories contain invalid characters.'; 130 | $wb['invalid_custom_php_ini_settings_txt'] = 'Invalid php.ini settings'; 131 | $wb['invalid_system_user_or_group_txt'] = 'Invalid system user or group'; 132 | $wb['apache_directive_blocked_error'] = 'Apache directive blocked by security settings:'; 133 | ?> 134 | -------------------------------------------------------------------------------- /src/interface/web/sites/lib/lang/pl_web_domain.lng: -------------------------------------------------------------------------------- 1 | www'; 80 | $wb['www_to_non_www_txt'] = 'www -> bez www'; 81 | $wb['php_fpm_use_socket_txt'] = 'Użyj gniazda dla PHP-FPM'; 82 | $wb['error_no_sni_txt'] = 'SNI dla SSL nie jest aktywowane na tym serwerze. Możesz utworzyć tylko jeden certyfikat SSL dla jednego adresu IP.'; 83 | $wb['python_txt'] = 'Python'; 84 | $wb['pm_max_children_txt'] = 'PHP-FPM pm.max_children'; 85 | $wb['pm_start_servers_txt'] = 'PHP-FPM pm.start_servers'; 86 | $wb['pm_min_spare_servers_txt'] = 'PHP-FPM pm.min_spare_servers'; 87 | $wb['pm_max_spare_servers_txt'] = 'PHP-FPM pm.max_spare_servers'; 88 | $wb['error_php_fpm_pm_settings_txt'] = 'Wartości ustawień PHP-FPM pm muszą być następujące: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; 89 | $wb['pm_max_children_error_regex'] = 'PHP-FPM pm.max_children musi być całkowitą liczną dodatnią.'; 90 | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers musi być całkowitą liczną dodatnią.'; 91 | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers musi być całkowitą liczną dodatnią.'; 92 | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers musi być całkowitą liczną dodatnią.'; 93 | $wb['hd_quota_error_regex'] = 'Limit dysku jest nieprawidłowy.'; 94 | $wb['traffic_quota_error_regex'] = 'Limit transferu jest nieprawidłowy.'; 95 | $wb['ssl_key_txt'] = 'Klucz SSL'; 96 | $wb['web_folder_error_regex'] = 'Wprowadzono nieprawidłowy katalog. Proszę nie wpisywać znaku slash [ / ]'; 97 | $wb['domain_error_autosub'] = 'Istnieje już subdomena z tymi ustawieniami.'; 98 | $wb['perl_txt'] = 'Perl'; 99 | $wb['fastcgi_php_version_txt'] = 'Wersja PHP'; 100 | $wb['pm_txt'] = 'PHP-FPM Process Manager'; 101 | $wb['pm_process_idle_timeout_txt'] = 'PHP-FPM pm.process_idle_timeout'; 102 | $wb['pm_max_requests_txt'] = 'PHP-FPM pm.max_requests'; 103 | $wb['pm_process_idle_timeout_error_regex'] = 'PHP-FPM pm.process_idle_timeout musi być całkowitą wartością dodatnią'; 104 | $wb['pm_max_requests_error_regex'] = 'PHP-FPM pm.max_requests musi być całkowitą wartością >= 0.'; 105 | $wb['pm_ondemand_hint_txt'] = 'Musisz mieć PHP w wersji >= 5.3.9 aby użyć ondemand process manager. Jeżeli wybierzesz ondemand dla starszej wersji, PHP nie zadziała w ogóle!'; 106 | $wb['generate_password_txt'] = 'Generuj hasło'; 107 | $wb['repeat_password_txt'] = 'Powtórz hasło'; 108 | $wb['password_mismatch_txt'] = 'Hasła nie pasują'; 109 | $wb['password_match_txt'] = 'Hasła pasują'; 110 | $wb['available_php_directive_snippets_txt'] = 'Dostępne zestawy dyrektyw PHP:'; 111 | $wb['available_apache_directive_snippets_txt'] = 'Dostępne zestawy dyrektyw Apache:'; 112 | $wb['available_nginx_directive_snippets_txt'] = 'Dostępne zestawy dyrektyw nginx:'; 113 | $wb['proxy_directives_txt'] = 'Dyrektywy Proxy'; 114 | $wb['available_proxy_directive_snippets_txt'] = 'Dostępne zestawy dyrektyw Proxy:'; 115 | $wb['no_server_error'] = 'No server selected.'; 116 | $wb['no_backup_txt'] = 'No backup'; 117 | $wb['daily_backup_txt'] = 'Daily'; 118 | $wb['weekly_backup_txt'] = 'Weekly'; 119 | $wb['monthly_backup_txt'] = 'Monthly'; 120 | $wb['rewrite_rules_txt'] = 'Rewrite Rules'; 121 | $wb['invalid_rewrite_rules_txt'] = 'Invalid Rewrite Rules'; 122 | $wb['allowed_rewrite_rule_directives_txt'] = 'Allowed Directives:'; 123 | $wb['configuration_error_txt'] = 'CONFIGURATION ERROR'; 124 | $wb['variables_txt'] = 'Variables'; 125 | $wb['added_by_txt'] = 'Added by'; 126 | $wb['added_date_txt'] = 'Added date'; 127 | $wb['backup_excludes_txt'] = 'Excluded Directories'; 128 | $wb['backup_excludes_note_txt'] = '(Separate multiple directories with commas. Example: web/cache/*,web/backup)'; 129 | $wb['backup_excludes_error_regex'] = 'The excluded directories contain invalid characters.'; 130 | $wb['invalid_custom_php_ini_settings_txt'] = 'Invalid php.ini settings'; 131 | $wb['invalid_system_user_or_group_txt'] = 'Invalid system user or group'; 132 | $wb['apache_directive_blocked_error'] = 'Apache directive blocked by security settings:'; 133 | ?> 134 | -------------------------------------------------------------------------------- /src/interface/web/sites/lib/lang/el_web_domain.lng: -------------------------------------------------------------------------------- 1 | = 0.'; 103 | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; 104 | $wb['generate_password_txt'] = 'Generate Password'; 105 | $wb['repeat_password_txt'] = 'Repeat Password'; 106 | $wb['password_mismatch_txt'] = 'The passwords do not match.'; 107 | $wb['password_match_txt'] = 'The passwords do match.'; 108 | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; 109 | $wb['domain_error_autosub'] = 'There is already a subdomain with these settings.'; 110 | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; 111 | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; 112 | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; 113 | $wb['proxy_directives_txt'] = 'Proxy Directives'; 114 | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; 115 | $wb['no_server_error'] = 'No server selected.'; 116 | $wb['no_backup_txt'] = 'No backup'; 117 | $wb['daily_backup_txt'] = 'Daily'; 118 | $wb['weekly_backup_txt'] = 'Weekly'; 119 | $wb['monthly_backup_txt'] = 'Monthly'; 120 | $wb['rewrite_rules_txt'] = 'Rewrite Rules'; 121 | $wb['invalid_rewrite_rules_txt'] = 'Invalid Rewrite Rules'; 122 | $wb['allowed_rewrite_rule_directives_txt'] = 'Allowed Directives:'; 123 | $wb['configuration_error_txt'] = 'CONFIGURATION ERROR'; 124 | $wb['variables_txt'] = 'Variables'; 125 | $wb['added_by_txt'] = 'Added by'; 126 | $wb['added_date_txt'] = 'Added date'; 127 | $wb['backup_excludes_txt'] = 'Excluded Directories'; 128 | $wb['backup_excludes_note_txt'] = '(Separate multiple directories with commas. Example: web/cache/*,web/backup)'; 129 | $wb['backup_excludes_error_regex'] = 'The excluded directories contain invalid characters.'; 130 | $wb['invalid_custom_php_ini_settings_txt'] = 'Invalid php.ini settings'; 131 | $wb['invalid_system_user_or_group_txt'] = 'Invalid system user or group'; 132 | $wb['apache_directive_blocked_error'] = 'Apache directive blocked by security settings:'; 133 | ?> 134 | -------------------------------------------------------------------------------- /src/interface/web/sites/lib/lang/es_web_domain.lng: -------------------------------------------------------------------------------- 1 | www'; 80 | $wb['www_to_non_www_txt'] = 'www -> non-www'; 81 | $wb['php_fpm_use_socket_txt'] = 'Usar Socket para PHP-FPM'; 82 | $wb['error_no_sni_txt'] = 'SNI para SSL no está activado en este servidor. Sólo es posible activar un certificado SSL en cada dirección IP.'; 83 | $wb['python_txt'] = 'Python'; 84 | $wb['pm_max_children_txt'] = 'PHP-FPM pm.max_children'; 85 | $wb['pm_start_servers_txt'] = 'PHP-FPM pm.start_servers'; 86 | $wb['pm_min_spare_servers_txt'] = 'PHP-FPM pm.min_spare_servers'; 87 | $wb['pm_max_spare_servers_txt'] = 'PHP-FPM pm.max_spare_servers'; 88 | $wb['error_php_fpm_pm_settings_txt'] = 'Los valores de configuración de PHP-FPM pm debe ser como sigue: pm.max_children> = pm.max_spare_servers> = pm.start_servers> = pm.min_spare_servers> 0'; 89 | $wb['pm_max_children_error_regex'] = 'PHP-FPM pm.max_children debe ser un valor entero positivo.'; 90 | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers debe ser un valor entero positivo.'; 91 | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers debe ser un valor entero positivo.'; 92 | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers debe ser un valor entero positivo.'; 93 | $wb['ssl_key_txt'] = 'SSL Key'; 94 | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; 95 | $wb['domain_error_autosub'] = 'There is already a subdomain with these settings.'; 96 | $wb['perl_txt'] = 'Perl'; 97 | $wb['hd_quota_error_regex'] = 'Harddisk quota is invalid.'; 98 | $wb['traffic_quota_error_regex'] = 'Traffic quota is invalid.'; 99 | $wb['fastcgi_php_version_txt'] = 'PHP Version'; 100 | $wb['pm_txt'] = 'PHP-FPM Process Manager'; 101 | $wb['pm_process_idle_timeout_txt'] = 'PHP-FPM pm.process_idle_timeout'; 102 | $wb['pm_max_requests_txt'] = 'PHP-FPM pm.max_requests'; 103 | $wb['pm_process_idle_timeout_error_regex'] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; 104 | $wb['pm_max_requests_error_regex'] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; 105 | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; 106 | $wb['generate_password_txt'] = 'Generate Password'; 107 | $wb['repeat_password_txt'] = 'Repeat Password'; 108 | $wb['password_mismatch_txt'] = 'The passwords do not match.'; 109 | $wb['password_match_txt'] = 'The passwords do match.'; 110 | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; 111 | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; 112 | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; 113 | $wb['proxy_directives_txt'] = 'Proxy Directives'; 114 | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; 115 | $wb['no_server_error'] = 'No server selected.'; 116 | $wb['no_backup_txt'] = 'No backup'; 117 | $wb['daily_backup_txt'] = 'Daily'; 118 | $wb['weekly_backup_txt'] = 'Weekly'; 119 | $wb['monthly_backup_txt'] = 'Monthly'; 120 | $wb['rewrite_rules_txt'] = 'Rewrite Rules'; 121 | $wb['invalid_rewrite_rules_txt'] = 'Invalid Rewrite Rules'; 122 | $wb['allowed_rewrite_rule_directives_txt'] = 'Allowed Directives:'; 123 | $wb['configuration_error_txt'] = 'CONFIGURATION ERROR'; 124 | $wb['variables_txt'] = 'Variables'; 125 | $wb['added_by_txt'] = 'Added by'; 126 | $wb['added_date_txt'] = 'Added date'; 127 | $wb['backup_excludes_txt'] = 'Excluded Directories'; 128 | $wb['backup_excludes_note_txt'] = '(Separate multiple directories with commas. Example: web/cache/*,web/backup)'; 129 | $wb['backup_excludes_error_regex'] = 'The excluded directories contain invalid characters.'; 130 | $wb['invalid_custom_php_ini_settings_txt'] = 'Invalid php.ini settings'; 131 | $wb['invalid_system_user_or_group_txt'] = 'Invalid system user or group'; 132 | $wb['apache_directive_blocked_error'] = 'Apache directive blocked by security settings:'; 133 | ?> 134 | -------------------------------------------------------------------------------- /src/interface/web/sites/lib/lang/de_web_domain.lng: -------------------------------------------------------------------------------- 1 | www'; 82 | $wb['www_to_non_www_txt'] = 'www -> Nicht-www'; 83 | $wb['php_fpm_use_socket_txt'] = 'Benutze Socket für PHP-FPM'; 84 | $wb['ipv6_address_txt'] = 'IPv6 Adresse'; 85 | $wb['error_no_sni_txt'] = 'SNI für SSL ist auf diesem Server nicht aktiviert. Sie können daher nur ein SSL Zertifikat pro IP Adresse eintragen.'; 86 | $wb['python_txt'] = 'Python'; 87 | $wb['perl_txt'] = 'Perl'; 88 | $wb['pm_max_children_txt'] = 'PHP-FPM pm.max_children'; 89 | $wb['pm_start_servers_txt'] = 'PHP-FPM pm.start_servers'; 90 | $wb['pm_min_spare_servers_txt'] = 'PHP-FPM pm.min_spare_servers'; 91 | $wb['pm_max_spare_servers_txt'] = 'PHP-FPM pm.max_spare_servers'; 92 | $wb['error_php_fpm_pm_settings_txt'] = 'Die Werte der PHP-FPM pm Einstellungen müssen wie folgt sein: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; 93 | $wb['pm_max_children_error_regex'] = 'PHP-FPM pm.max_children muß eine positive ganze Zahl sein.'; 94 | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers muß eine positive ganze Zahl sein.'; 95 | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers muß eine positive ganze Zahl sein.'; 96 | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers muß eine positive ganze Zahl sein.'; 97 | $wb['hd_quota_error_regex'] = 'Speicherplatzbeschränkung ist ungültig.'; 98 | $wb['traffic_quota_error_regex'] = 'Transfervolumenbeschränkung ist ungültig.'; 99 | $wb['fastcgi_php_version_txt'] = 'PHP Version'; 100 | $wb['pm_txt'] = 'PHP-FPM FastCGI Prozess Manager'; 101 | $wb['pm_process_idle_timeout_txt'] = 'PHP-FPM pm.process_idle_timeout'; 102 | $wb['pm_max_requests_txt'] = 'PHP-FPM pm.max_requests'; 103 | $wb['pm_process_idle_timeout_error_regex'] = 'PHP-FPM pm.process_idle_timeout muß eine positive ganze Zahl sein.'; 104 | $wb['pm_max_requests_error_regex'] = 'PHP-FPM pm.max_requests muß eine ganze Zahl >= 0 sein.'; 105 | $wb['pm_ondemand_hint_txt'] = 'Bitte beachten Sie, daß Ihre PHP Version >= 5.3.9 sein muß, wenn Sie den ondemand Process-Manager nutzen möchten. Wenn Sie ondemand für eine ältere PHP Version auswählen, wird PHP nicht mehr starten!'; 106 | $wb['generate_password_txt'] = 'Passwort erzeugen'; 107 | $wb['repeat_password_txt'] = 'Passwort wiederholen'; 108 | $wb['password_mismatch_txt'] = 'Die Passwörter stimmen nicht überein.'; 109 | $wb['password_match_txt'] = 'Die Passwörter stimmen überein.'; 110 | $wb['available_php_directive_snippets_txt'] = 'Verfügbare PHP Direktiven Schnipsel:'; 111 | $wb['available_apache_directive_snippets_txt'] = 'Verfügbare Apache Direktiven Schnipsel:'; 112 | $wb['available_nginx_directive_snippets_txt'] = 'Verfügbare nginx Direktiven Schnipsel:'; 113 | $wb['proxy_directives_txt'] = 'Proxy Direktiven'; 114 | $wb['available_proxy_directive_snippets_txt'] = 'Verfügbare Proxy Direktiven Schnipsel:'; 115 | $wb['no_server_error'] = 'Kein Server ausgewählt.'; 116 | $wb['no_backup_txt'] = 'Kein Backup'; 117 | $wb['daily_backup_txt'] = 'Täglich'; 118 | $wb['weekly_backup_txt'] = 'Wöchentlich'; 119 | $wb['monthly_backup_txt'] = 'Monatlich'; 120 | $wb['rewrite_rules_txt'] = 'Rewrite Rules'; 121 | $wb['invalid_rewrite_rules_txt'] = 'Unzulässige Rewrite Rules'; 122 | $wb['allowed_rewrite_rule_directives_txt'] = 'Erlaubte Direktiven:'; 123 | $wb['configuration_error_txt'] = 'KONFIGURATIONSFEHLER'; 124 | $wb['variables_txt'] = 'Variablen'; 125 | $wb['added_by_txt'] = 'Hinzugefügt von'; 126 | $wb['added_date_txt'] = 'Hinzugefügt am'; 127 | $wb['backup_excludes_txt'] = 'Auszuschließende Verzeichnisse'; 128 | $wb['backup_excludes_note_txt'] = '(Mehrere Verzeichnisse mit Kommas trennen. Beispiel: web/cache/*,web/backup)'; 129 | $wb['backup_excludes_error_regex'] = 'Die auszuschließenden Verzeichnisse enthalten ungültige Zeichen.'; 130 | $wb['invalid_custom_php_ini_settings_txt'] = 'Unzulässige php.ini-Einstellungen'; 131 | $wb['invalid_system_user_or_group_txt'] = 'Invalid system user or group'; 132 | $wb['apache_directive_blocked_error'] = 'Die Apache Direktive wurde durch die Sicherheitsrichtline blockiert:'; 133 | ?> 134 | -------------------------------------------------------------------------------- /src/interface/web/sites/lib/lang/fr_web_domain.lng: -------------------------------------------------------------------------------- 1 | = 0.'; 103 | $wb['pm_ondemand_hint_txt'] = 'Votre version de PHP doit être >= 5.3.9 pour utiliser le manager de process ondemand. Si vous choisissez ondemand avec une version de PHP plus ancienne, PHP ne pourra plus démarrer !'; 104 | $wb['generate_password_txt'] = 'Générer un mot de passe'; 105 | $wb['repeat_password_txt'] = 'Vérification du mot de passe'; 106 | $wb['password_mismatch_txt'] = 'Les mots de passe ne correspondent pas.'; 107 | $wb['password_match_txt'] = 'Les mots de passe correspondent.'; 108 | $wb['web_folder_error_regex'] = 'Le dossier saisi est invalide. Ne saisissez pas de ./ (slash).'; 109 | $wb['domain_error_autosub'] = 'Un sous-domaine avec cette configuration existe déjà.'; 110 | $wb['available_php_directive_snippets_txt'] = 'Directives PHP Snippets disponibles :'; 111 | $wb['available_apache_directive_snippets_txt'] = 'Directives Apache Snippets disponibles :'; 112 | $wb['available_nginx_directive_snippets_txt'] = 'Directives nginx Snippets disponibles :'; 113 | $wb['proxy_directives_txt'] = 'Directives Proxy'; 114 | $wb['available_proxy_directive_snippets_txt'] = 'Directives Proxy Snippets disponibles :'; 115 | $wb['no_server_error'] = 'Aucun serveur sélectionné.'; 116 | $wb['no_backup_txt'] = 'Pas de Backup'; 117 | $wb['daily_backup_txt'] = 'Quotidien'; 118 | $wb['weekly_backup_txt'] = 'Hebdomadaire'; 119 | $wb['monthly_backup_txt'] = 'Mensuel'; 120 | $wb['rewrite_rules_txt'] = 'Règles de réécriture'; 121 | $wb['invalid_rewrite_rules_txt'] = 'Règles de réécriture incorrectes'; 122 | $wb['allowed_rewrite_rule_directives_txt'] = 'Directives autorisées :'; 123 | $wb['configuration_error_txt'] = 'CONFIGURATION ERROR'; 124 | $wb['variables_txt'] = 'Variables'; 125 | $wb['added_by_txt'] = 'Added by'; 126 | $wb['added_date_txt'] = 'Added date'; 127 | $wb['backup_excludes_txt'] = 'Excluded Directories'; 128 | $wb['backup_excludes_note_txt'] = '(Separate multiple directories with commas. Example: web/cache/*,web/backup)'; 129 | $wb['backup_excludes_error_regex'] = 'The excluded directories contain invalid characters.'; 130 | $wb['invalid_custom_php_ini_settings_txt'] = 'Invalid php.ini settings'; 131 | $wb['invalid_system_user_or_group_txt'] = 'Invalid system user or group'; 132 | $wb['apache_directive_blocked_error'] = 'Apache directive blocked by security settings:'; 133 | ?> 134 | -------------------------------------------------------------------------------- /src/server/conf/nginx_vhost.conf.master: -------------------------------------------------------------------------------- 1 | server { 2 | listen :80; 3 | 4 | listen []:80; 5 | 6 | 7 | 8 | listen :443 ssl; 9 | ssl_protocols TLSv1 TLSv1.1 TLSv1.2; 10 | 11 | listen []:443 ssl; 12 | 13 | ssl_certificate /ssl/.crt; 14 | ssl_certificate_key /ssl/.key; 15 | 16 | 17 | server_name ; 18 | 19 | root ; 20 | 21 | 22 | if ($http_host "") { 23 | rewrite ^ $scheme://$request_uri? permanent; 24 | } 25 | 26 | 27 | if ($http_host "") { 28 | rewrite ^ $scheme://$request_uri? permanent; 29 | } 30 | 31 | 32 | if ($http_host "") { 33 | rewrite ^(.*)$ $2 ; 34 | } 35 | 36 | 37 | 38 | 39 | if ($http_host != "") { rewrite ^(.*)$ $2 ; } 40 | 41 | 42 | location / { 43 | proxy_pass ; 44 | rewrite ^/(.*) /$1; 45 | 46 | 47 | 48 | } 49 | 50 | 51 | 52 | index index.html index.htm index.php index.cgi index.pl index.xhtml; 53 | 54 | 55 | location ~ \.shtml$ { 56 | ssi on; 57 | } 58 | 59 | 60 | 61 | error_page 400 /error/400.html; 62 | error_page 401 /error/401.html; 63 | error_page 403 /error/403.html; 64 | error_page 404 /error/404.html; 65 | error_page 405 /error/405.html; 66 | error_page 500 /error/500.html; 67 | error_page 502 /error/502.html; 68 | error_page 503 /error/503.html; 69 | recursive_error_pages on; 70 | location = /error/400.html { 71 | 72 | internal; 73 | } 74 | location = /error/401.html { 75 | 76 | internal; 77 | } 78 | location = /error/403.html { 79 | 80 | internal; 81 | } 82 | location = /error/404.html { 83 | 84 | internal; 85 | } 86 | location = /error/405.html { 87 | 88 | internal; 89 | } 90 | location = /error/500.html { 91 | 92 | internal; 93 | } 94 | location = /error/502.html { 95 | 96 | internal; 97 | } 98 | location = /error/503.html { 99 | 100 | internal; 101 | } 102 | 103 | 104 | error_log /var/log/ispconfig/httpd//error.log; 105 | access_log /var/log/ispconfig/httpd//access.log combined; 106 | 107 | ## Disable .htaccess and other hidden files 108 | location = /favicon.ico { 109 | log_not_found off; 110 | access_log off; 111 | } 112 | 113 | location = /robots.txt { 114 | allow all; 115 | log_not_found off; 116 | access_log off; 117 | } 118 | 119 | location /stats/ { 120 | 121 | index index.html index.php; 122 | auth_basic "Members Only"; 123 | auth_basic_user_file ; 124 | } 125 | 126 | location ^~ /awstats-icon { 127 | alias /usr/share/awstats/icon; 128 | } 129 | 130 | location ~ \.php$ { 131 | try_files @php; 132 | } 133 | 134 | 135 | location @php { 136 | try_files $uri =404; 137 | include /etc/nginx/fastcgi_params; 138 | 139 | fastcgi_pass 127.0.0.1:; 140 | 141 | 142 | fastcgi_pass unix:; 143 | 144 | fastcgi_index index.php; 145 | fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; 146 | #fastcgi_param PATH_INFO $fastcgi_script_name; 147 | fastcgi_intercept_errors on; 148 | } 149 | 150 | location @php { 151 | deny all; 152 | } 153 | 154 | 155 | 156 | location /cgi-bin/ { 157 | try_files $uri =404; 158 | include /etc/nginx/fastcgi_params; 159 | root ; 160 | gzip off; 161 | fastcgi_pass unix:/var/run/fcgiwrap.socket; 162 | fastcgi_index index.cgi; 163 | fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; 164 | fastcgi_intercept_errors on; 165 | } 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | location { ##merge## 178 | auth_basic "Members Only"; 179 | auth_basic_user_file .htpasswd; 180 | 181 | location ~ \.php$ { 182 | try_files @php; 183 | } 184 | } 185 | 186 | 187 | } 188 | 189 | 190 | server { 191 | listen :80; 192 | 193 | listen []:80; 194 | 195 | 196 | 197 | listen :443 ssl; 198 | 199 | listen []:443 ssl; 200 | 201 | ssl_certificate /ssl/.crt; 202 | ssl_certificate_key /ssl/.key; 203 | 204 | 205 | server_name ; 206 | 207 | 208 | if ($http_host "") { 209 | rewrite ^ $scheme://$request_uri? permanent; 210 | } 211 | 212 | 213 | 214 | rewrite ^ $request_uri? ; 215 | 216 | 217 | location / { 218 | proxy_pass ; 219 | rewrite ^/(.*) /$1; 220 | 221 | 222 | 223 | } 224 | 225 | } 226 | 227 | -------------------------------------------------------------------------------- /src/interface/web/sites/templates/web_domain_edit.htm: -------------------------------------------------------------------------------- 1 |

2 |

3 | 4 | 5 |
6 |

{tmpl_var name='configuration_error_txt'}

7 |
8 |
{tmpl_var name='config_error_tstamp'} : 
{tmpl_var name='config_error_msg'}
9 |
10 |
11 |
12 | 13 |
14 | 15 |
16 |
17 | 18 |
19 | 20 | 21 | 24 | 25 | 26 | 27 | 30 | 31 |
32 |
33 | 34 | 37 |
38 | 39 | 40 |
41 | 42 |
43 | 44 | 47 |
48 |
49 |
50 | 51 | 54 |
55 |
56 | 57 | 60 |
61 |
62 | 63 | 64 | 67 | 68 | 69 | 70 |
71 |
72 | 73 |  MB 74 |
75 |
76 | 77 |  MB 78 |
79 |
80 |

{tmpl_var name='cgi_txt'}

81 |
82 | {tmpl_var name='cgi'} 83 |
84 |
85 |
86 |

{tmpl_var name='ssi_txt'}

87 |
88 | {tmpl_var name='ssi'} 89 |
90 |
91 |
92 |

{tmpl_var name='perl_txt'}

93 |
94 | {tmpl_var name='perl'} 95 |
96 |
97 |
98 |

{tmpl_var name='ruby_txt'}

99 |
100 | {tmpl_var name='ruby'} 101 |
102 |
103 |
104 |

{tmpl_var name='python_txt'}

105 |
106 | {tmpl_var name='python'} 107 |
108 |
109 |
110 |

{tmpl_var name='suexec_txt'}

111 |
112 | {tmpl_var name='suexec'} 113 |
114 |
115 |
116 |

{tmpl_var name='errordocs_txt'}

117 |
118 | {tmpl_var name='errordocs'} 119 |
120 |
121 | 122 |
123 | 124 | 127 |
128 |
129 |

{tmpl_var name='ssl_txt'}

130 |
131 | {tmpl_var name='ssl'} 132 |
133 |
134 |
135 |

{tmpl_var name='ssl_letsencrypt_txt'}

136 |
137 | {tmpl_var name='ssl_letsencrypt'} 138 |
139 |
140 |
141 | 142 | 145 |
146 |
147 | 148 | 151 |
152 |
153 |

{tmpl_var name='active_txt'}

154 |
155 | {tmpl_var name='active'} 156 |
157 |
158 |
159 | 160 | 161 | 162 |
163 | 164 | 165 |
166 |
167 | 168 |
169 | 278 | --------------------------------------------------------------------------------