From bc1bcd7b5be212d99fef8984fb5e39ffbc2e94da Mon Sep 17 00:00:00 2001 From: Sascha Moser <28950736+xopez@users.noreply.github.com> Date: Tue, 1 Dec 2020 18:21:50 +0100 Subject: [PATCH] Add PHP 8.0 socket (#189) --- src/nginxconfig/i18n/en/templates/global_sections/php.js | 1 + src/nginxconfig/templates/global_sections/php.vue | 1 + 2 files changed, 2 insertions(+) diff --git a/src/nginxconfig/i18n/en/templates/global_sections/php.js b/src/nginxconfig/i18n/en/templates/global_sections/php.js index 46e5bc9..baf9542 100644 --- a/src/nginxconfig/i18n/en/templates/global_sections/php.js +++ b/src/nginxconfig/i18n/en/templates/global_sections/php.js @@ -38,6 +38,7 @@ export default { php72Socket: '7.2 socket', php73Socket: '7.3 socket', php74Socket: '7.4 socket', + php80Socket: '8.0 socket', phpSocket: 'PHP socket', disabled: 'Disabled', }; diff --git a/src/nginxconfig/templates/global_sections/php.vue b/src/nginxconfig/templates/global_sections/php.vue index 6d32df2..30ab2f7 100644 --- a/src/nginxconfig/templates/global_sections/php.vue +++ b/src/nginxconfig/templates/global_sections/php.vue @@ -95,6 +95,7 @@ THE SOFTWARE. '/var/run/php/php7.0-fpm.sock': `${i18n.templates.globalSections.php.php70Socket}: /var/run/php/php7.0-fpm.sock`, '/var/run/php/php7.3-fpm.sock': `${i18n.templates.globalSections.php.php73Socket}: /var/run/php/php7.3-fpm.sock`, '/var/run/php/php7.4-fpm.sock': `${i18n.templates.globalSections.php.php74Socket}: /var/run/php/php7.4-fpm.sock`, + '/var/run/php/php8.0-fpm.sock': `${i18n.templates.globalSections.php.php80Socket}: /var/run/php/php8.0-fpm.sock`, '/var/run/php/php-fpm.sock': `${i18n.templates.globalSections.php.phpSocket}: /var/run/php/php-fpm.sock`, };