Add PHP 8.1 FPM socket option (#346)

* Add PHP 8.1 FPM socket option

* Add i18n strings for PHP 8.1 socket
This commit is contained in:
Matt Cowley 2022-04-21 12:43:02 +01:00 committed by GitHub
parent 9eb223599a
commit 9f396e0693
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 19 additions and 9 deletions

View File

@ -1,5 +1,5 @@
/*
Copyright 2021 DigitalOcean
Copyright 2022 DigitalOcean
This code is licensed under the MIT License.
You may obtain a copy of the License at
@ -50,6 +50,7 @@ export default {
php73Socket: '7.3 Socket',
php74Socket: '7.4 Socket',
php80Socket: '8.0 Socket',
php81Socket: '8.1 Socket',
phpSocket: 'PHP Socket',
custom: 'Benutzerdefiniert',
disabled: 'Deaktiviert',

View File

@ -1,5 +1,5 @@
/*
Copyright 2021 DigitalOcean
Copyright 2022 DigitalOcean
This code is licensed under the MIT License.
You may obtain a copy of the License at
@ -50,6 +50,7 @@ export default {
php73Socket: '7.3 socket',
php74Socket: '7.4 socket',
php80Socket: '8.0 socket',
php81Socket: '8.1 socket',
phpSocket: 'PHP socket',
custom: 'Custom',
disabled: 'Disabled',

View File

@ -1,5 +1,5 @@
/*
Copyright 2021 DigitalOcean
Copyright 2022 DigitalOcean
This code is licensed under the MIT License.
You may obtain a copy of the License at
@ -50,6 +50,7 @@ export default {
php73Socket: '7.3 socket',
php74Socket: '7.4 socket',
php80Socket: '8.0 socket',
php81Socket: '8.1 socket',
phpSocket: 'PHP socket',
custom: 'Personalizado',
disabled: 'Desactivado',

View File

@ -1,5 +1,5 @@
/*
Copyright 2021 DigitalOcean
Copyright 2022 DigitalOcean
This code is licensed under the MIT License.
You may obtain a copy of the License at
@ -50,6 +50,7 @@ export default {
php73Socket: 'Socket 7.3',
php74Socket: 'Socket 7.4',
php80Socket: 'Socket 8.0',
php81Socket: 'Socket 8.1',
phpSocket: 'Socket PHP',
custom: 'Custom',
disabled: 'Désactivé',

View File

@ -1,5 +1,5 @@
/*
Copyright 2021 DigitalOcean
Copyright 2022 DigitalOcean
This code is licensed under the MIT License.
You may obtain a copy of the License at
@ -50,6 +50,7 @@ export default {
php73Socket: '7.3 socket',
php74Socket: '7.4 socket',
php80Socket: '8.0 socket',
php81Socket: '8.1 socket',
phpSocket: 'PHP socket',
custom: 'Własny',
disabled: 'Wyłączony',

View File

@ -1,5 +1,5 @@
/*
Copyright 2021 DigitalOcean
Copyright 2022 DigitalOcean
This code is licensed under the MIT License.
You may obtain a copy of the License at
@ -50,6 +50,7 @@ export default {
php73Socket: 'Socket 7.3',
php74Socket: 'Socket 7.4',
php80Socket: 'Socket 8.0',
php81Socket: 'Socket 8.1',
phpSocket: 'Socket PHP',
custom: 'Custom', // TODO: translate
disabled: 'Desabilitado',

View File

@ -1,5 +1,5 @@
/*
Copyright 2021 DigitalOcean
Copyright 2022 DigitalOcean
This code is licensed under the MIT License.
You may obtain a copy of the License at
@ -50,6 +50,7 @@ export default {
php73Socket: '7.3 сокет',
php74Socket: '7.4 сокет',
php80Socket: '8.0 сокет',
php81Socket: '8.1 сокет',
phpSocket: 'PHP сокет',
custom: 'Другой',
disabled: 'Выключено',

View File

@ -1,5 +1,5 @@
/*
Copyright 2021 DigitalOcean
Copyright 2022 DigitalOcean
This code is licensed under the MIT License.
You may obtain a copy of the License at
@ -50,6 +50,7 @@ export default {
php73Socket: '7.3 socket',
php74Socket: '7.4 socket',
php80Socket: '8.0 socket',
php81Socket: '8.1 socket',
phpSocket: 'PHP socket',
custom: '自定义',
disabled: '禁用',

View File

@ -1,5 +1,5 @@
/*
Copyright 2021 DigitalOcean
Copyright 2022 DigitalOcean
This code is licensed under the MIT License.
You may obtain a copy of the License at
@ -50,6 +50,7 @@ export default {
php73Socket: '7.3 socket',
php74Socket: '7.4 socket',
php80Socket: '8.0 socket',
php81Socket: '8.1 socket',
phpSocket: 'PHP socket',
custom: '自定義',
disabled: '停用',

View File

@ -204,6 +204,7 @@ THE SOFTWARE.
'/var/run/php/php7.3-fpm.sock': 'templates.domainSections.php.php73Socket',
'/var/run/php/php7.4-fpm.sock': 'templates.domainSections.php.php74Socket',
'/var/run/php/php8.0-fpm.sock': 'templates.domainSections.php.php80Socket',
'/var/run/php/php8.1-fpm.sock': 'templates.domainSections.php.php81Socket',
'/var/run/php/php-fpm.sock': 'templates.domainSections.php.phpSocket',
'custom': 'templates.domainSections.php.custom',
};