legacy PHP routing, fast_cgi fixes

This commit is contained in:
Szekeres Bálint
2018-12-18 23:26:57 +01:00
parent 1191637cc6
commit c25228ef53
5 changed files with 36 additions and 15 deletions

View File

@@ -50,6 +50,7 @@
php: true,
php_server: '/var/run/php/php7.2-fpm.sock',
php_server_backup: '',
php_legacy_routing: false,
wordpress: false,
drupal: false,
magento: false,
@@ -531,6 +532,10 @@
return $scope.data.fallback_php && $scope.isPHP();
};
$scope.isLegacyPHPRouting = function() {
return $scope.isPHP() && $scope.data.php_legacy_routing;
};
$scope.isPHP = function() {
return $scope.data.php;
};