first commit

This commit is contained in:
Rudy Masson 2022-04-07 11:49:17 +02:00
commit ea47c93aa7
36 changed files with 9092 additions and 0 deletions

19
.env Normal file
View File

@ -0,0 +1,19 @@
# In all environments, the following files are loaded if they exist,
# the latter taking precedence over the former:
#
# * .env contains default values for the environment variables needed by the app
# * .env.local uncommitted file with local overrides
# * .env.$APP_ENV committed environment-specific defaults
# * .env.$APP_ENV.local uncommitted environment-specific overrides
#
# Real environment variables win over .env files.
#
# DO NOT DEFINE PRODUCTION SECRETS IN THIS FILE NOR IN ANY OTHER COMMITTED FILES.
#
# Run "composer dump-env prod" to compile .env files for production use (requires symfony/flex >=1.2).
# https://symfony.com/doc/current/best_practices.html#use-environment-variables-for-infrastructure-configuration
###> symfony/framework-bundle ###
APP_ENV=dev
APP_SECRET=406ccaa0c76a451fdcc2307ea146cbef
###< symfony/framework-bundle ###

10
.gitignore vendored Normal file
View File

@ -0,0 +1,10 @@
###> symfony/framework-bundle ###
/.env.local
/.env.local.php
/.env.*.local
/config/secrets/prod/prod.decrypt.private.php
/public/bundles/
/var/
/vendor/
###< symfony/framework-bundle ###

3
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,3 @@
{
"git.ignoreLimitWarning": true
}

17
bin/console Executable file
View File

@ -0,0 +1,17 @@
#!/usr/bin/env php
<?php
use App\Kernel;
use Symfony\Bundle\FrameworkBundle\Console\Application;
if (!is_file(dirname(__DIR__).'/vendor/autoload_runtime.php')) {
throw new LogicException('Symfony Runtime is missing. Try running "composer require symfony/runtime".');
}
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
return function (array $context) {
$kernel = new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
return new Application($kernel);
};

67
composer.json Normal file
View File

@ -0,0 +1,67 @@
{
"type": "project",
"license": "proprietary",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=7.2.5",
"ext-ctype": "*",
"ext-iconv": "*",
"symfony/console": "5.4.*",
"symfony/dotenv": "5.4.*",
"symfony/flex": "^1.17|^2",
"symfony/framework-bundle": "5.4.*",
"symfony/runtime": "5.4.*",
"symfony/yaml": "5.4.*"
},
"require-dev": {
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"symfony/flex": true,
"symfony/runtime": true
},
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php72": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "5.4.*"
}
}
}

2626
composer.lock generated Normal file
View File

@ -0,0 +1,2626 @@
{
"_readme": [
"This file locks the dependencies of your project to a known state",
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
"content-hash": "e5b48b46cc68536c0f6497e15a39811e",
"packages": [
{
"name": "psr/cache",
"version": "2.0.0",
"source": {
"type": "git",
"url": "https://github.com/php-fig/cache.git",
"reference": "213f9dbc5b9bfbc4f8db86d2838dc968752ce13b"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/php-fig/cache/zipball/213f9dbc5b9bfbc4f8db86d2838dc968752ce13b",
"reference": "213f9dbc5b9bfbc4f8db86d2838dc968752ce13b",
"shasum": ""
},
"require": {
"php": ">=8.0.0"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"autoload": {
"psr-4": {
"Psr\\Cache\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "PHP-FIG",
"homepage": "https://www.php-fig.org/"
}
],
"description": "Common interface for caching libraries",
"keywords": [
"cache",
"psr",
"psr-6"
],
"support": {
"source": "https://github.com/php-fig/cache/tree/2.0.0"
},
"time": "2021-02-03T23:23:37+00:00"
},
{
"name": "psr/container",
"version": "1.1.2",
"source": {
"type": "git",
"url": "https://github.com/php-fig/container.git",
"reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
"reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
"shasum": ""
},
"require": {
"php": ">=7.4.0"
},
"type": "library",
"autoload": {
"psr-4": {
"Psr\\Container\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "PHP-FIG",
"homepage": "https://www.php-fig.org/"
}
],
"description": "Common Container Interface (PHP FIG PSR-11)",
"homepage": "https://github.com/php-fig/container",
"keywords": [
"PSR-11",
"container",
"container-interface",
"container-interop",
"psr"
],
"support": {
"issues": "https://github.com/php-fig/container/issues",
"source": "https://github.com/php-fig/container/tree/1.1.2"
},
"time": "2021-11-05T16:50:12+00:00"
},
{
"name": "psr/event-dispatcher",
"version": "1.0.0",
"source": {
"type": "git",
"url": "https://github.com/php-fig/event-dispatcher.git",
"reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
"reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
"shasum": ""
},
"require": {
"php": ">=7.2.0"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"autoload": {
"psr-4": {
"Psr\\EventDispatcher\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "PHP-FIG",
"homepage": "http://www.php-fig.org/"
}
],
"description": "Standard interfaces for event handling.",
"keywords": [
"events",
"psr",
"psr-14"
],
"support": {
"issues": "https://github.com/php-fig/event-dispatcher/issues",
"source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
},
"time": "2019-01-08T18:20:26+00:00"
},
{
"name": "psr/log",
"version": "2.0.0",
"source": {
"type": "git",
"url": "https://github.com/php-fig/log.git",
"reference": "ef29f6d262798707a9edd554e2b82517ef3a9376"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/php-fig/log/zipball/ef29f6d262798707a9edd554e2b82517ef3a9376",
"reference": "ef29f6d262798707a9edd554e2b82517ef3a9376",
"shasum": ""
},
"require": {
"php": ">=8.0.0"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"autoload": {
"psr-4": {
"Psr\\Log\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "PHP-FIG",
"homepage": "https://www.php-fig.org/"
}
],
"description": "Common interface for logging libraries",
"homepage": "https://github.com/php-fig/log",
"keywords": [
"log",
"psr",
"psr-3"
],
"support": {
"source": "https://github.com/php-fig/log/tree/2.0.0"
},
"time": "2021-07-14T16:41:46+00:00"
},
{
"name": "symfony/cache",
"version": "v5.4.7",
"source": {
"type": "git",
"url": "https://github.com/symfony/cache.git",
"reference": "ba06841ed293fcaf79a592f59fdaba471f7c756c"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/cache/zipball/ba06841ed293fcaf79a592f59fdaba471f7c756c",
"reference": "ba06841ed293fcaf79a592f59fdaba471f7c756c",
"shasum": ""
},
"require": {
"php": ">=7.2.5",
"psr/cache": "^1.0|^2.0",
"psr/log": "^1.1|^2|^3",
"symfony/cache-contracts": "^1.1.7|^2",
"symfony/deprecation-contracts": "^2.1|^3",
"symfony/polyfill-php73": "^1.9",
"symfony/polyfill-php80": "^1.16",
"symfony/service-contracts": "^1.1|^2|^3",
"symfony/var-exporter": "^4.4|^5.0|^6.0"
},
"conflict": {
"doctrine/dbal": "<2.13.1",
"symfony/dependency-injection": "<4.4",
"symfony/http-kernel": "<4.4",
"symfony/var-dumper": "<4.4"
},
"provide": {
"psr/cache-implementation": "1.0|2.0",
"psr/simple-cache-implementation": "1.0|2.0",
"symfony/cache-implementation": "1.0|2.0"
},
"require-dev": {
"cache/integration-tests": "dev-master",
"doctrine/cache": "^1.6|^2.0",
"doctrine/dbal": "^2.13.1|^3.0",
"predis/predis": "^1.1",
"psr/simple-cache": "^1.0|^2.0",
"symfony/config": "^4.4|^5.0|^6.0",
"symfony/dependency-injection": "^4.4|^5.0|^6.0",
"symfony/filesystem": "^4.4|^5.0|^6.0",
"symfony/http-kernel": "^4.4|^5.0|^6.0",
"symfony/messenger": "^4.4|^5.0|^6.0",
"symfony/var-dumper": "^4.4|^5.0|^6.0"
},
"type": "library",
"autoload": {
"psr-4": {
"Symfony\\Component\\Cache\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Nicolas Grekas",
"email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"description": "Provides an extended PSR-6, PSR-16 (and tags) implementation",
"homepage": "https://symfony.com",
"keywords": [
"caching",
"psr6"
],
"support": {
"source": "https://github.com/symfony/cache/tree/v5.4.7"
},
"funding": [
{
"url": "https://symfony.com/sponsor",
"type": "custom"
},
{
"url": "https://github.com/fabpot",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
"time": "2022-03-22T15:31:03+00:00"
},
{
"name": "symfony/cache-contracts",
"version": "v2.5.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/cache-contracts.git",
"reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/cache-contracts/zipball/64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
"reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
"shasum": ""
},
"require": {
"php": ">=7.2.5",
"psr/cache": "^1.0|^2.0|^3.0"
},
"suggest": {
"symfony/cache-implementation": ""
},
"type": "library",
"extra": {
"branch-alias": {
"dev-main": "2.5-dev"
},
"thanks": {
"name": "symfony/contracts",
"url": "https://github.com/symfony/contracts"
}
},
"autoload": {
"psr-4": {
"Symfony\\Contracts\\Cache\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Nicolas Grekas",
"email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"description": "Generic abstractions related to caching",
"homepage": "https://symfony.com",
"keywords": [
"abstractions",
"contracts",
"decoupling",
"interfaces",
"interoperability",
"standards"
],
"support": {
"source": "https://github.com/symfony/cache-contracts/tree/v2.5.1"
},
"funding": [
{
"url": "https://symfony.com/sponsor",
"type": "custom"
},
{
"url": "https://github.com/fabpot",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
"time": "2022-01-02T09:53:40+00:00"
},
{
"name": "symfony/config",
"version": "v5.4.7",
"source": {
"type": "git",
"url": "https://github.com/symfony/config.git",
"reference": "05624c386afa1b4ccc1357463d830fade8d9d404"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/config/zipball/05624c386afa1b4ccc1357463d830fade8d9d404",
"reference": "05624c386afa1b4ccc1357463d830fade8d9d404",
"shasum": ""
},
"require": {
"php": ">=7.2.5",
"symfony/deprecation-contracts": "^2.1|^3",
"symfony/filesystem": "^4.4|^5.0|^6.0",
"symfony/polyfill-ctype": "~1.8",
"symfony/polyfill-php80": "^1.16",
"symfony/polyfill-php81": "^1.22"
},
"conflict": {
"symfony/finder": "<4.4"
},
"require-dev": {
"symfony/event-dispatcher": "^4.4|^5.0|^6.0",
"symfony/finder": "^4.4|^5.0|^6.0",
"symfony/messenger": "^4.4|^5.0|^6.0",
"symfony/service-contracts": "^1.1|^2|^3",
"symfony/yaml": "^4.4|^5.0|^6.0"
},
"suggest": {
"symfony/yaml": "To use the yaml reference dumper"
},
"type": "library",
"autoload": {
"psr-4": {
"Symfony\\Component\\Config\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Fabien Potencier",
"email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/config/tree/v5.4.7"
},
"funding": [
{
"url": "https://symfony.com/sponsor",
"type": "custom"
},
{
"url": "https://github.com/fabpot",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
"time": "2022-03-21T13:42:03+00:00"
},
{
"name": "symfony/console",
"version": "v5.4.7",
"source": {
"type": "git",
"url": "https://github.com/symfony/console.git",
"reference": "900275254f0a1a2afff1ab0e11abd5587a10e1d6"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/console/zipball/900275254f0a1a2afff1ab0e11abd5587a10e1d6",
"reference": "900275254f0a1a2afff1ab0e11abd5587a10e1d6",
"shasum": ""
},
"require": {
"php": ">=7.2.5",
"symfony/deprecation-contracts": "^2.1|^3",
"symfony/polyfill-mbstring": "~1.0",
"symfony/polyfill-php73": "^1.9",
"symfony/polyfill-php80": "^1.16",
"symfony/service-contracts": "^1.1|^2|^3",
"symfony/string": "^5.1|^6.0"
},
"conflict": {
"psr/log": ">=3",
"symfony/dependency-injection": "<4.4",
"symfony/dotenv": "<5.1",
"symfony/event-dispatcher": "<4.4",
"symfony/lock": "<4.4",
"symfony/process": "<4.4"
},
"provide": {
"psr/log-implementation": "1.0|2.0"
},
"require-dev": {
"psr/log": "^1|^2",
"symfony/config": "^4.4|^5.0|^6.0",
"symfony/dependency-injection": "^4.4|^5.0|^6.0",
"symfony/event-dispatcher": "^4.4|^5.0|^6.0",
"symfony/lock": "^4.4|^5.0|^6.0",
"symfony/process": "^4.4|^5.0|^6.0",
"symfony/var-dumper": "^4.4|^5.0|^6.0"
},
"suggest": {
"psr/log": "For using the console logger",
"symfony/event-dispatcher": "",
"symfony/lock": "",
"symfony/process": ""
},
"type": "library",
"autoload": {
"psr-4": {
"Symfony\\Component\\Console\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Fabien Potencier",
"email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"description": "Eases the creation of beautiful and testable command line interfaces",
"homepage": "https://symfony.com",
"keywords": [
"cli",
"command line",
"console",
"terminal"
],
"support": {
"source": "https://github.com/symfony/console/tree/v5.4.7"
},
"funding": [
{
"url": "https://symfony.com/sponsor",
"type": "custom"
},
{
"url": "https://github.com/fabpot",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
"time": "2022-03-31T17:09:19+00:00"
},
{
"name": "symfony/dependency-injection",
"version": "v5.4.7",
"source": {
"type": "git",
"url": "https://github.com/symfony/dependency-injection.git",
"reference": "35588b2afb08ea3a142d62fefdcad4cb09be06ed"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/dependency-injection/zipball/35588b2afb08ea3a142d62fefdcad4cb09be06ed",
"reference": "35588b2afb08ea3a142d62fefdcad4cb09be06ed",
"shasum": ""
},
"require": {
"php": ">=7.2.5",
"psr/container": "^1.1.1",
"symfony/deprecation-contracts": "^2.1|^3",
"symfony/polyfill-php80": "^1.16",
"symfony/polyfill-php81": "^1.22",
"symfony/service-contracts": "^1.1.6|^2"
},
"conflict": {
"ext-psr": "<1.1|>=2",
"symfony/config": "<5.3",
"symfony/finder": "<4.4",
"symfony/proxy-manager-bridge": "<4.4",
"symfony/yaml": "<4.4.26"
},
"provide": {
"psr/container-implementation": "1.0",
"symfony/service-implementation": "1.0|2.0"
},
"require-dev": {
"symfony/config": "^5.3|^6.0",
"symfony/expression-language": "^4.4|^5.0|^6.0",
"symfony/yaml": "^4.4.26|^5.0|^6.0"
},
"suggest": {
"symfony/config": "",
"symfony/expression-language": "For using expressions in service container configuration",
"symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
"symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
"symfony/yaml": ""
},
"type": "library",
"autoload": {
"psr-4": {
"Symfony\\Component\\DependencyInjection\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Fabien Potencier",
"email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"description": "Allows you to standardize and centralize the way objects are constructed in your application",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/dependency-injection/tree/v5.4.7"
},
"funding": [
{
"url": "https://symfony.com/sponsor",
"type": "custom"
},
{
"url": "https://github.com/fabpot",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
"time": "2022-03-08T15:43:06+00:00"
},
{
"name": "symfony/deprecation-contracts",
"version": "v3.0.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/deprecation-contracts.git",
"reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
"reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
"shasum": ""
},
"require": {
"php": ">=8.0.2"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-main": "3.0-dev"
},
"thanks": {
"name": "symfony/contracts",
"url": "https://github.com/symfony/contracts"
}
},
"autoload": {
"files": [
"function.php"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Nicolas Grekas",
"email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"description": "A generic function and convention to trigger deprecation notices",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.1"
},
"funding": [
{
"url": "https://symfony.com/sponsor",
"type": "custom"
},
{
"url": "https://github.com/fabpot",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
"time": "2022-01-02T09:55:41+00:00"
},
{
"name": "symfony/dotenv",
"version": "v5.4.5",
"source": {
"type": "git",
"url": "https://github.com/symfony/dotenv.git",
"reference": "83a2310904a4f5d4f42526227b5a578ac82232a9"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/dotenv/zipball/83a2310904a4f5d4f42526227b5a578ac82232a9",
"reference": "83a2310904a4f5d4f42526227b5a578ac82232a9",
"shasum": ""
},
"require": {
"php": ">=7.2.5",
"symfony/deprecation-contracts": "^2.1|^3"
},
"require-dev": {
"symfony/console": "^4.4|^5.0|^6.0",
"symfony/process": "^4.4|^5.0|^6.0"
},
"type": "library",
"autoload": {
"psr-4": {
"Symfony\\Component\\Dotenv\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Fabien Potencier",
"email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"description": "Registers environment variables from a .env file",
"homepage": "https://symfony.com",
"keywords": [
"dotenv",
"env",
"environment"
],
"support": {
"source": "https://github.com/symfony/dotenv/tree/v5.4.5"
},
"funding": [
{
"url": "https://symfony.com/sponsor",
"type": "custom"
},
{
"url": "https://github.com/fabpot",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
"time": "2022-02-15T17:04:12+00:00"
},
{
"name": "symfony/error-handler",
"version": "v5.4.7",
"source": {
"type": "git",
"url": "https://github.com/symfony/error-handler.git",
"reference": "060bc01856a1846e3e4385261bc9ed11a1dd7b6a"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/error-handler/zipball/060bc01856a1846e3e4385261bc9ed11a1dd7b6a",
"reference": "060bc01856a1846e3e4385261bc9ed11a1dd7b6a",
"shasum": ""
},
"require": {
"php": ">=7.2.5",
"psr/log": "^1|^2|^3",
"symfony/var-dumper": "^4.4|^5.0|^6.0"
},
"require-dev": {
"symfony/deprecation-contracts": "^2.1|^3",
"symfony/http-kernel": "^4.4|^5.0|^6.0",
"symfony/serializer": "^4.4|^5.0|^6.0"
},
"bin": [
"Resources/bin/patch-type-declarations"
],
"type": "library",
"autoload": {
"psr-4": {
"Symfony\\Component\\ErrorHandler\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Fabien Potencier",
"email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"description": "Provides tools to manage errors and ease debugging PHP code",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/error-handler/tree/v5.4.7"
},
"funding": [
{
"url": "https://symfony.com/sponsor",
"type": "custom"
},
{
"url": "https://github.com/fabpot",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
"time": "2022-03-18T16:21:29+00:00"
},
{
"name": "symfony/event-dispatcher",
"version": "v5.4.3",
"source": {
"type": "git",
"url": "https://github.com/symfony/event-dispatcher.git",
"reference": "dec8a9f58d20df252b9cd89f1c6c1530f747685d"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/dec8a9f58d20df252b9cd89f1c6c1530f747685d",
"reference": "dec8a9f58d20df252b9cd89f1c6c1530f747685d",
"shasum": ""
},
"require": {
"php": ">=7.2.5",
"symfony/deprecation-contracts": "^2.1|^3",
"symfony/event-dispatcher-contracts": "^2|^3",
"symfony/polyfill-php80": "^1.16"
},
"conflict": {
"symfony/dependency-injection": "<4.4"
},
"provide": {
"psr/event-dispatcher-implementation": "1.0",
"symfony/event-dispatcher-implementation": "2.0"
},
"require-dev": {
"psr/log": "^1|^2|^3",
"symfony/config": "^4.4|^5.0|^6.0",
"symfony/dependency-injection": "^4.4|^5.0|^6.0",
"symfony/error-handler": "^4.4|^5.0|^6.0",
"symfony/expression-language": "^4.4|^5.0|^6.0",
"symfony/http-foundation": "^4.4|^5.0|^6.0",
"symfony/service-contracts": "^1.1|^2|^3",
"symfony/stopwatch": "^4.4|^5.0|^6.0"
},
"suggest": {
"symfony/dependency-injection": "",
"symfony/http-kernel": ""
},
"type": "library",
"autoload": {
"psr-4": {
"Symfony\\Component\\EventDispatcher\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Fabien Potencier",
"email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/event-dispatcher/tree/v5.4.3"
},
"funding": [
{
"url": "https://symfony.com/sponsor",
"type": "custom"
},
{
"url": "https://github.com/fabpot",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
"time": "2022-01-02T09:53:40+00:00"
},
{
"name": "symfony/event-dispatcher-contracts",
"version": "v3.0.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/event-dispatcher-contracts.git",
"reference": "7bc61cc2db649b4637d331240c5346dcc7708051"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7bc61cc2db649b4637d331240c5346dcc7708051",
"reference": "7bc61cc2db649b4637d331240c5346dcc7708051",
"shasum": ""
},
"require": {
"php": ">=8.0.2",
"psr/event-dispatcher": "^1"
},
"suggest": {
"symfony/event-dispatcher-implementation": ""
},
"type": "library",
"extra": {
"branch-alias": {
"dev-main": "3.0-dev"
},
"thanks": {
"name": "symfony/contracts",
"url": "https://github.com/symfony/contracts"
}
},
"autoload": {
"psr-4": {
"Symfony\\Contracts\\EventDispatcher\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Nicolas Grekas",
"email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"description": "Generic abstractions related to dispatching event",
"homepage": "https://symfony.com",
"keywords": [
"abstractions",
"contracts",
"decoupling",
"interfaces",
"interoperability",
"standards"
],
"support": {
"source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.1"
},
"funding": [
{
"url": "https://symfony.com/sponsor",
"type": "custom"
},
{
"url": "https://github.com/fabpot",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
"time": "2022-01-02T09:55:41+00:00"
},
{
"name": "symfony/filesystem",
"version": "v5.4.7",
"source": {
"type": "git",
"url": "https://github.com/symfony/filesystem.git",
"reference": "3a4442138d80c9f7b600fb297534ac718b61d37f"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/filesystem/zipball/3a4442138d80c9f7b600fb297534ac718b61d37f",
"reference": "3a4442138d80c9f7b600fb297534ac718b61d37f",
"shasum": ""
},
"require": {
"php": ">=7.2.5",
"symfony/polyfill-ctype": "~1.8",
"symfony/polyfill-mbstring": "~1.8",
"symfony/polyfill-php80": "^1.16"
},
"type": "library",
"autoload": {
"psr-4": {
"Symfony\\Component\\Filesystem\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Fabien Potencier",
"email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"description": "Provides basic utilities for the filesystem",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/filesystem/tree/v5.4.7"
},
"funding": [
{
"url": "https://symfony.com/sponsor",
"type": "custom"
},
{
"url": "https://github.com/fabpot",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
"time": "2022-04-01T12:33:59+00:00"
},
{
"name": "symfony/finder",
"version": "v5.4.3",
"source": {
"type": "git",
"url": "https://github.com/symfony/finder.git",
"reference": "231313534dded84c7ecaa79d14bc5da4ccb69b7d"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/finder/zipball/231313534dded84c7ecaa79d14bc5da4ccb69b7d",
"reference": "231313534dded84c7ecaa79d14bc5da4ccb69b7d",
"shasum": ""
},
"require": {
"php": ">=7.2.5",
"symfony/deprecation-contracts": "^2.1|^3",
"symfony/polyfill-php80": "^1.16"
},
"type": "library",
"autoload": {
"psr-4": {
"Symfony\\Component\\Finder\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Fabien Potencier",
"email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"description": "Finds files and directories via an intuitive fluent interface",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/finder/tree/v5.4.3"
},
"funding": [
{
"url": "https://symfony.com/sponsor",
"type": "custom"
},
{
"url": "https://github.com/fabpot",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
"time": "2022-01-26T16:34:36+00:00"
},
{
"name": "symfony/flex",
"version": "v2.1.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/flex.git",
"reference": "dd7dafe3bfebf8441e167b76d8a18974585467f3"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/flex/zipball/dd7dafe3bfebf8441e167b76d8a18974585467f3",
"reference": "dd7dafe3bfebf8441e167b76d8a18974585467f3",
"shasum": ""
},
"require": {
"composer-plugin-api": "^2.1",
"php": ">=8.0"
},
"require-dev": {
"composer/composer": "^2.1",
"symfony/dotenv": "^5.4|^6.0",
"symfony/filesystem": "^5.4|^6.0",
"symfony/phpunit-bridge": "^5.4|^6.0",
"symfony/process": "^5.4|^6.0"
},
"type": "composer-plugin",
"extra": {
"class": "Symfony\\Flex\\Flex"
},
"autoload": {
"psr-4": {
"Symfony\\Flex\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Fabien Potencier",
"email": "fabien.potencier@gmail.com"
}
],
"description": "Composer plugin for Symfony",
"support": {
"issues": "https://github.com/symfony/flex/issues",
"source": "https://github.com/symfony/flex/tree/v2.1.6"
},
"funding": [
{
"url": "https://symfony.com/sponsor",
"type": "custom"
},
{
"url": "https://github.com/fabpot",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
"time": "2022-02-16T17:31:43+00:00"
},
{
"name": "symfony/framework-bundle",
"version": "v5.4.7",
"source": {
"type": "git",
"url": "https://github.com/symfony/framework-bundle.git",
"reference": "7520f553c7a7721652c1b7ac95c09dae62a1676e"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/framework-bundle/zipball/7520f553c7a7721652c1b7ac95c09dae62a1676e",
"reference": "7520f553c7a7721652c1b7ac95c09dae62a1676e",
"shasum": ""
},
"require": {
"ext-xml": "*",
"php": ">=7.2.5",
"symfony/cache": "^5.2|^6.0",
"symfony/config": "^5.3|^6.0",
"symfony/dependency-injection": "^5.4.5|^6.0.5",
"symfony/deprecation-contracts": "^2.1|^3",
"symfony/error-handler": "^4.4.1|^5.0.1|^6.0",
"symfony/event-dispatcher": "^5.1|^6.0",
"symfony/filesystem": "^4.4|^5.0|^6.0",
"symfony/finder": "^4.4|^5.0|^6.0",
"symfony/http-foundation": "^5.3|^6.0",
"symfony/http-kernel": "^5.4|^6.0",
"symfony/polyfill-mbstring": "~1.0",
"symfony/polyfill-php80": "^1.16",
"symfony/polyfill-php81": "^1.22",
"symfony/routing": "^5.3|^6.0"
},
"conflict": {
"doctrine/annotations": "<1.13.1",
"doctrine/cache": "<1.11",
"doctrine/persistence": "<1.3",
"phpdocumentor/reflection-docblock": "<3.2.2",
"phpdocumentor/type-resolver": "<1.4.0",
"phpunit/phpunit": "<5.4.3",
"symfony/asset": "<5.3",
"symfony/console": "<5.2.5",
"symfony/dom-crawler": "<4.4",
"symfony/dotenv": "<5.1",
"symfony/form": "<5.2",
"symfony/http-client": "<4.4",
"symfony/lock": "<4.4",
"symfony/mailer": "<5.2",
"symfony/messenger": "<5.4",
"symfony/mime": "<4.4",
"symfony/property-access": "<5.3",
"symfony/property-info": "<4.4",
"symfony/security-csrf": "<5.3",
"symfony/serializer": "<5.2",
"symfony/service-contracts": ">=3.0",
"symfony/stopwatch": "<4.4",
"symfony/translation": "<5.3",
"symfony/twig-bridge": "<4.4",
"symfony/twig-bundle": "<4.4",
"symfony/validator": "<5.2",
"symfony/web-profiler-bundle": "<4.4",
"symfony/workflow": "<5.2"
},
"require-dev": {
"doctrine/annotations": "^1.13.1",
"doctrine/cache": "^1.11|^2.0",
"doctrine/persistence": "^1.3|^2.0",
"phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
"symfony/asset": "^5.3|^6.0",
"symfony/browser-kit": "^5.4|^6.0",
"symfony/console": "^5.4|^6.0",
"symfony/css-selector": "^4.4|^5.0|^6.0",
"symfony/dom-crawler": "^4.4.30|^5.3.7|^6.0",
"symfony/dotenv": "^5.1|^6.0",
"symfony/expression-language": "^4.4|^5.0|^6.0",
"symfony/form": "^5.2|^6.0",
"symfony/http-client": "^4.4|^5.0|^6.0",
"symfony/lock": "^4.4|^5.0|^6.0",
"symfony/mailer": "^5.2|^6.0",
"symfony/messenger": "^5.4|^6.0",
"symfony/mime": "^4.4|^5.0|^6.0",
"symfony/notifier": "^5.4|^6.0",
"symfony/polyfill-intl-icu": "~1.0",
"symfony/process": "^4.4|^5.0|^6.0",
"symfony/property-info": "^4.4|^5.0|^6.0",
"symfony/rate-limiter": "^5.2|^6.0",
"symfony/security-bundle": "^5.4|^6.0",
"symfony/serializer": "^5.4|^6.0",
"symfony/stopwatch": "^4.4|^5.0|^6.0",
"symfony/string": "^5.0|^6.0",
"symfony/translation": "^5.3|^6.0",
"symfony/twig-bundle": "^4.4|^5.0|^6.0",
"symfony/validator": "^5.2|^6.0",
"symfony/web-link": "^4.4|^5.0|^6.0",
"symfony/workflow": "^5.2|^6.0",
"symfony/yaml": "^4.4|^5.0|^6.0",
"twig/twig": "^2.10|^3.0"
},
"suggest": {
"ext-apcu": "For best performance of the system caches",
"symfony/console": "For using the console commands",
"symfony/form": "For using forms",
"symfony/property-info": "For using the property_info service",
"symfony/serializer": "For using the serializer service",
"symfony/validator": "For using validation",
"symfony/web-link": "For using web links, features such as preloading, prefetching or prerendering",
"symfony/yaml": "For using the debug:config and lint:yaml commands"
},
"type": "symfony-bundle",
"autoload": {
"psr-4": {
"Symfony\\Bundle\\FrameworkBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Fabien Potencier",
"email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/framework-bundle/tree/v5.4.7"
},
"funding": [
{
"url": "https://symfony.com/sponsor",
"type": "custom"
},
{
"url": "https://github.com/fabpot",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
"time": "2022-04-01T06:09:41+00:00"
},
{
"name": "symfony/http-foundation",
"version": "v5.4.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-foundation.git",
"reference": "34e89bc147633c0f9dd6caaaf56da3b806a21465"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/http-foundation/zipball/34e89bc147633c0f9dd6caaaf56da3b806a21465",
"reference": "34e89bc147633c0f9dd6caaaf56da3b806a21465",
"shasum": ""
},
"require": {
"php": ">=7.2.5",
"symfony/deprecation-contracts": "^2.1|^3",
"symfony/polyfill-mbstring": "~1.1",
"symfony/polyfill-php80": "^1.16"
},
"require-dev": {
"predis/predis": "~1.0",
"symfony/cache": "^4.4|^5.0|^6.0",
"symfony/expression-language": "^4.4|^5.0|^6.0",
"symfony/mime": "^4.4|^5.0|^6.0"
},
"suggest": {
"symfony/mime": "To use the file extension guesser"
},
"type": "library",
"autoload": {
"psr-4": {
"Symfony\\Component\\HttpFoundation\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Fabien Potencier",
"email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"description": "Defines an object-oriented layer for the HTTP specification",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/http-foundation/tree/v5.4.6"
},
"funding": [
{
"url": "https://symfony.com/sponsor",
"type": "custom"
},
{
"url": "https://github.com/fabpot",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
"time": "2022-03-05T21:03:43+00:00"
},
{
"name": "symfony/http-kernel",
"version": "v5.4.7",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-kernel.git",
"reference": "509243b9b3656db966284c45dffce9316c1ecc5c"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/http-kernel/zipball/509243b9b3656db966284c45dffce9316c1ecc5c",
"reference": "509243b9b3656db966284c45dffce9316c1ecc5c",
"shasum": ""
},
"require": {
"php": ">=7.2.5",
"psr/log": "^1|^2",
"symfony/deprecation-contracts": "^2.1|^3",
"symfony/error-handler": "^4.4|^5.0|^6.0",
"symfony/event-dispatcher": "^5.0|^6.0",
"symfony/http-foundation": "^5.3.7|^6.0",
"symfony/polyfill-ctype": "^1.8",
"symfony/polyfill-php73": "^1.9",
"symfony/polyfill-php80": "^1.16"
},
"conflict": {
"symfony/browser-kit": "<5.4",
"symfony/cache": "<5.0",
"symfony/config": "<5.0",
"symfony/console": "<4.4",
"symfony/dependency-injection": "<5.3",
"symfony/doctrine-bridge": "<5.0",
"symfony/form": "<5.0",
"symfony/http-client": "<5.0",
"symfony/mailer": "<5.0",
"symfony/messenger": "<5.0",
"symfony/translation": "<5.0",
"symfony/twig-bridge": "<5.0",
"symfony/validator": "<5.0",
"twig/twig": "<2.13"
},
"provide": {
"psr/log-implementation": "1.0|2.0"
},
"require-dev": {
"psr/cache": "^1.0|^2.0|^3.0",
"symfony/browser-kit": "^5.4|^6.0",
"symfony/config": "^5.0|^6.0",
"symfony/console": "^4.4|^5.0|^6.0",
"symfony/css-selector": "^4.4|^5.0|^6.0",
"symfony/dependency-injection": "^5.3|^6.0",
"symfony/dom-crawler": "^4.4|^5.0|^6.0",
"symfony/expression-language": "^4.4|^5.0|^6.0",
"symfony/finder": "^4.4|^5.0|^6.0",
"symfony/http-client-contracts": "^1.1|^2|^3",
"symfony/process": "^4.4|^5.0|^6.0",
"symfony/routing": "^4.4|^5.0|^6.0",
"symfony/stopwatch": "^4.4|^5.0|^6.0",
"symfony/translation": "^4.4|^5.0|^6.0",
"symfony/translation-contracts": "^1.1|^2|^3",
"twig/twig": "^2.13|^3.0.4"
},
"suggest": {
"symfony/browser-kit": "",
"symfony/config": "",
"symfony/console": "",
"symfony/dependency-injection": ""
},
"type": "library",
"autoload": {
"psr-4": {
"Symfony\\Component\\HttpKernel\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Fabien Potencier",
"email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"description": "Provides a structured process for converting a Request into a Response",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/http-kernel/tree/v5.4.7"
},
"funding": [
{
"url": "https://symfony.com/sponsor",
"type": "custom"
},
{
"url": "https://github.com/fabpot",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
"time": "2022-04-02T06:04:20+00:00"
},
{
"name": "symfony/polyfill-intl-grapheme",
"version": "v1.25.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-intl-grapheme.git",
"reference": "81b86b50cf841a64252b439e738e97f4a34e2783"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/81b86b50cf841a64252b439e738e97f4a34e2783",
"reference": "81b86b50cf841a64252b439e738e97f4a34e2783",
"shasum": ""
},
"require": {
"php": ">=7.1"
},
"suggest": {
"ext-intl": "For best performance"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-main": "1.23-dev"
},
"thanks": {
"name": "symfony/polyfill",
"url": "https://github.com/symfony/polyfill"
}
},
"autoload": {
"files": [
"bootstrap.php"
],
"psr-4": {
"Symfony\\Polyfill\\Intl\\Grapheme\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Nicolas Grekas",
"email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"description": "Symfony polyfill for intl's grapheme_* functions",
"homepage": "https://symfony.com",
"keywords": [
"compatibility",
"grapheme",
"intl",
"polyfill",
"portable",
"shim"
],
"support": {
"source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.25.0"
},
"funding": [
{
"url": "https://symfony.com/sponsor",
"type": "custom"
},
{
"url": "https://github.com/fabpot",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
"time": "2021-11-23T21:10:46+00:00"
},
{
"name": "symfony/polyfill-intl-normalizer",
"version": "v1.25.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-intl-normalizer.git",
"reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
"reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
"shasum": ""
},
"require": {
"php": ">=7.1"
},
"suggest": {
"ext-intl": "For best performance"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-main": "1.23-dev"
},
"thanks": {
"name": "symfony/polyfill",
"url": "https://github.com/symfony/polyfill"
}
},
"autoload": {
"files": [
"bootstrap.php"
],
"psr-4": {
"Symfony\\Polyfill\\Intl\\Normalizer\\": ""
},
"classmap": [
"Resources/stubs"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Nicolas Grekas",
"email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"description": "Symfony polyfill for intl's Normalizer class and related functions",
"homepage": "https://symfony.com",
"keywords": [
"compatibility",
"intl",
"normalizer",
"polyfill",
"portable",
"shim"
],
"support": {
"source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.25.0"
},
"funding": [
{
"url": "https://symfony.com/sponsor",
"type": "custom"
},
{
"url": "https://github.com/fabpot",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
"time": "2021-02-19T12:13:01+00:00"
},
{
"name": "symfony/polyfill-mbstring",
"version": "v1.25.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-mbstring.git",
"reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/0abb51d2f102e00a4eefcf46ba7fec406d245825",
"reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825",
"shasum": ""
},
"require": {
"php": ">=7.1"
},
"provide": {
"ext-mbstring": "*"
},
"suggest": {
"ext-mbstring": "For best performance"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-main": "1.23-dev"
},
"thanks": {
"name": "symfony/polyfill",
"url": "https://github.com/symfony/polyfill"
}
},
"autoload": {
"files": [
"bootstrap.php"
],
"psr-4": {
"Symfony\\Polyfill\\Mbstring\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Nicolas Grekas",
"email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"description": "Symfony polyfill for the Mbstring extension",
"homepage": "https://symfony.com",
"keywords": [
"compatibility",
"mbstring",
"polyfill",
"portable",
"shim"
],
"support": {
"source": "https://github.com/symfony/polyfill-mbstring/tree/v1.25.0"
},
"funding": [
{
"url": "https://symfony.com/sponsor",
"type": "custom"
},
{
"url": "https://github.com/fabpot",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
"time": "2021-11-30T18:21:41+00:00"
},
{
"name": "symfony/polyfill-php73",
"version": "v1.25.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-php73.git",
"reference": "cc5db0e22b3cb4111010e48785a97f670b350ca5"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/cc5db0e22b3cb4111010e48785a97f670b350ca5",
"reference": "cc5db0e22b3cb4111010e48785a97f670b350ca5",
"shasum": ""
},
"require": {
"php": ">=7.1"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-main": "1.23-dev"
},
"thanks": {
"name": "symfony/polyfill",
"url": "https://github.com/symfony/polyfill"
}
},
"autoload": {
"files": [
"bootstrap.php"
],
"psr-4": {
"Symfony\\Polyfill\\Php73\\": ""
},
"classmap": [
"Resources/stubs"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Nicolas Grekas",
"email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
"homepage": "https://symfony.com",
"keywords": [
"compatibility",
"polyfill",
"portable",
"shim"
],
"support": {
"source": "https://github.com/symfony/polyfill-php73/tree/v1.25.0"
},
"funding": [
{
"url": "https://symfony.com/sponsor",
"type": "custom"
},
{
"url": "https://github.com/fabpot",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
"time": "2021-06-05T21:20:04+00:00"
},
{
"name": "symfony/polyfill-php80",
"version": "v1.25.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-php80.git",
"reference": "4407588e0d3f1f52efb65fbe92babe41f37fe50c"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/4407588e0d3f1f52efb65fbe92babe41f37fe50c",
"reference": "4407588e0d3f1f52efb65fbe92babe41f37fe50c",
"shasum": ""
},
"require": {
"php": ">=7.1"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-main": "1.23-dev"
},
"thanks": {
"name": "symfony/polyfill",
"url": "https://github.com/symfony/polyfill"
}
},
"autoload": {
"files": [
"bootstrap.php"
],
"psr-4": {
"Symfony\\Polyfill\\Php80\\": ""
},
"classmap": [
"Resources/stubs"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Ion Bazan",
"email": "ion.bazan@gmail.com"
},
{
"name": "Nicolas Grekas",
"email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
"homepage": "https://symfony.com",
"keywords": [
"compatibility",
"polyfill",
"portable",
"shim"
],
"support": {
"source": "https://github.com/symfony/polyfill-php80/tree/v1.25.0"
},
"funding": [
{
"url": "https://symfony.com/sponsor",
"type": "custom"
},
{
"url": "https://github.com/fabpot",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
"time": "2022-03-04T08:16:47+00:00"
},
{
"name": "symfony/polyfill-php81",
"version": "v1.25.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-php81.git",
"reference": "5de4ba2d41b15f9bd0e19b2ab9674135813ec98f"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/5de4ba2d41b15f9bd0e19b2ab9674135813ec98f",
"reference": "5de4ba2d41b15f9bd0e19b2ab9674135813ec98f",
"shasum": ""
},
"require": {
"php": ">=7.1"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-main": "1.23-dev"
},
"thanks": {
"name": "symfony/polyfill",
"url": "https://github.com/symfony/polyfill"
}
},
"autoload": {
"files": [
"bootstrap.php"
],
"psr-4": {
"Symfony\\Polyfill\\Php81\\": ""
},
"classmap": [
"Resources/stubs"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Nicolas Grekas",
"email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
"homepage": "https://symfony.com",
"keywords": [
"compatibility",
"polyfill",
"portable",
"shim"
],
"support": {
"source": "https://github.com/symfony/polyfill-php81/tree/v1.25.0"
},
"funding": [
{
"url": "https://symfony.com/sponsor",
"type": "custom"
},
{
"url": "https://github.com/fabpot",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
"time": "2021-09-13T13:58:11+00:00"
},
{
"name": "symfony/routing",
"version": "v5.4.3",
"source": {
"type": "git",
"url": "https://github.com/symfony/routing.git",
"reference": "44b29c7a94e867ccde1da604792f11a469958981"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/routing/zipball/44b29c7a94e867ccde1da604792f11a469958981",
"reference": "44b29c7a94e867ccde1da604792f11a469958981",
"shasum": ""
},
"require": {
"php": ">=7.2.5",
"symfony/deprecation-contracts": "^2.1|^3",
"symfony/polyfill-php80": "^1.16"
},
"conflict": {
"doctrine/annotations": "<1.12",
"symfony/config": "<5.3",
"symfony/dependency-injection": "<4.4",
"symfony/yaml": "<4.4"
},
"require-dev": {
"doctrine/annotations": "^1.12",
"psr/log": "^1|^2|^3",
"symfony/config": "^5.3|^6.0",
"symfony/dependency-injection": "^4.4|^5.0|^6.0",
"symfony/expression-language": "^4.4|^5.0|^6.0",
"symfony/http-foundation": "^4.4|^5.0|^6.0",
"symfony/yaml": "^4.4|^5.0|^6.0"
},
"suggest": {
"symfony/config": "For using the all-in-one router or any loader",
"symfony/expression-language": "For using expression matching",
"symfony/http-foundation": "For using a Symfony Request object",
"symfony/yaml": "For using the YAML loader"
},
"type": "library",
"autoload": {
"psr-4": {
"Symfony\\Component\\Routing\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Fabien Potencier",
"email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"description": "Maps an HTTP request to a set of configuration variables",
"homepage": "https://symfony.com",
"keywords": [
"router",
"routing",
"uri",
"url"
],
"support": {
"source": "https://github.com/symfony/routing/tree/v5.4.3"
},
"funding": [
{
"url": "https://symfony.com/sponsor",
"type": "custom"
},
{
"url": "https://github.com/fabpot",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
"time": "2022-01-02T09:53:40+00:00"
},
{
"name": "symfony/runtime",
"version": "v5.4.7",
"source": {
"type": "git",
"url": "https://github.com/symfony/runtime.git",
"reference": "dc22a2876de3a3dc26b686570d9e638d443b575e"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/runtime/zipball/dc22a2876de3a3dc26b686570d9e638d443b575e",
"reference": "dc22a2876de3a3dc26b686570d9e638d443b575e",
"shasum": ""
},
"require": {
"composer-plugin-api": "^1.0|^2.0",
"php": ">=7.2.5",
"symfony/polyfill-php80": "^1.15"
},
"conflict": {
"symfony/dotenv": "<5.1"
},
"require-dev": {
"composer/composer": "^1.0.2|^2.0",
"symfony/console": "^4.4.30|^5.3.7|^6.0",
"symfony/dotenv": "^5.1|^6.0",
"symfony/http-foundation": "^4.4.30|^5.3.7|^6.0",
"symfony/http-kernel": "^4.4.30|^5.3.7|^6.0"
},
"type": "composer-plugin",
"extra": {
"class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
},
"autoload": {
"psr-4": {
"Symfony\\Component\\Runtime\\": "",
"Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
},
"exclude-from-classmap": [
"/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Nicolas Grekas",
"email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"description": "Enables decoupling PHP applications from global state",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/runtime/tree/v5.4.7"
},
"funding": [
{
"url": "https://symfony.com/sponsor",
"type": "custom"
},
{
"url": "https://github.com/fabpot",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
"time": "2022-03-08T15:36:36+00:00"
},
{
"name": "symfony/service-contracts",
"version": "v2.5.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/service-contracts.git",
"reference": "24d9dc654b83e91aa59f9d167b131bc3b5bea24c"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/service-contracts/zipball/24d9dc654b83e91aa59f9d167b131bc3b5bea24c",
"reference": "24d9dc654b83e91aa59f9d167b131bc3b5bea24c",
"shasum": ""
},
"require": {
"php": ">=7.2.5",
"psr/container": "^1.1",
"symfony/deprecation-contracts": "^2.1|^3"
},
"conflict": {
"ext-psr": "<1.1|>=2"
},
"suggest": {
"symfony/service-implementation": ""
},
"type": "library",
"extra": {
"branch-alias": {
"dev-main": "2.5-dev"
},
"thanks": {
"name": "symfony/contracts",
"url": "https://github.com/symfony/contracts"
}
},
"autoload": {
"psr-4": {
"Symfony\\Contracts\\Service\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Nicolas Grekas",
"email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"description": "Generic abstractions related to writing services",
"homepage": "https://symfony.com",
"keywords": [
"abstractions",
"contracts",
"decoupling",
"interfaces",
"interoperability",
"standards"
],
"support": {
"source": "https://github.com/symfony/service-contracts/tree/v2.5.1"
},
"funding": [
{
"url": "https://symfony.com/sponsor",
"type": "custom"
},
{
"url": "https://github.com/fabpot",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
"time": "2022-03-13T20:07:29+00:00"
},
{
"name": "symfony/string",
"version": "v5.4.3",
"source": {
"type": "git",
"url": "https://github.com/symfony/string.git",
"reference": "92043b7d8383e48104e411bc9434b260dbeb5a10"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/string/zipball/92043b7d8383e48104e411bc9434b260dbeb5a10",
"reference": "92043b7d8383e48104e411bc9434b260dbeb5a10",
"shasum": ""
},
"require": {
"php": ">=7.2.5",
"symfony/polyfill-ctype": "~1.8",
"symfony/polyfill-intl-grapheme": "~1.0",
"symfony/polyfill-intl-normalizer": "~1.0",
"symfony/polyfill-mbstring": "~1.0",
"symfony/polyfill-php80": "~1.15"
},
"conflict": {
"symfony/translation-contracts": ">=3.0"
},
"require-dev": {
"symfony/error-handler": "^4.4|^5.0|^6.0",
"symfony/http-client": "^4.4|^5.0|^6.0",
"symfony/translation-contracts": "^1.1|^2",
"symfony/var-exporter": "^4.4|^5.0|^6.0"
},
"type": "library",
"autoload": {
"files": [
"Resources/functions.php"
],
"psr-4": {
"Symfony\\Component\\String\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Nicolas Grekas",
"email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
"homepage": "https://symfony.com",
"keywords": [
"grapheme",
"i18n",
"string",
"unicode",
"utf-8",
"utf8"
],
"support": {
"source": "https://github.com/symfony/string/tree/v5.4.3"
},
"funding": [
{
"url": "https://symfony.com/sponsor",
"type": "custom"
},
{
"url": "https://github.com/fabpot",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
"time": "2022-01-02T09:53:40+00:00"
},
{
"name": "symfony/var-dumper",
"version": "v5.4.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/var-dumper.git",
"reference": "294e9da6e2e0dd404e983daa5aa74253d92c05d0"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/var-dumper/zipball/294e9da6e2e0dd404e983daa5aa74253d92c05d0",
"reference": "294e9da6e2e0dd404e983daa5aa74253d92c05d0",
"shasum": ""
},
"require": {
"php": ">=7.2.5",
"symfony/polyfill-mbstring": "~1.0",
"symfony/polyfill-php80": "^1.16"
},
"conflict": {
"phpunit/phpunit": "<5.4.3",
"symfony/console": "<4.4"
},
"require-dev": {
"ext-iconv": "*",
"symfony/console": "^4.4|^5.0|^6.0",
"symfony/process": "^4.4|^5.0|^6.0",
"symfony/uid": "^5.1|^6.0",
"twig/twig": "^2.13|^3.0.4"
},
"suggest": {
"ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
"ext-intl": "To show region name in time zone dump",
"symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
},
"bin": [
"Resources/bin/var-dump-server"
],
"type": "library",
"autoload": {
"files": [
"Resources/functions/dump.php"
],
"psr-4": {
"Symfony\\Component\\VarDumper\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Nicolas Grekas",
"email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"description": "Provides mechanisms for walking through any arbitrary PHP variable",
"homepage": "https://symfony.com",
"keywords": [
"debug",
"dump"
],
"support": {
"source": "https://github.com/symfony/var-dumper/tree/v5.4.6"
},
"funding": [
{
"url": "https://symfony.com/sponsor",
"type": "custom"
},
{
"url": "https://github.com/fabpot",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
"time": "2022-03-02T12:42:23+00:00"
},
{
"name": "symfony/var-exporter",
"version": "v5.4.7",
"source": {
"type": "git",
"url": "https://github.com/symfony/var-exporter.git",
"reference": "7eacaa588c9b27f2738575adb4a8457a80d9c807"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/var-exporter/zipball/7eacaa588c9b27f2738575adb4a8457a80d9c807",
"reference": "7eacaa588c9b27f2738575adb4a8457a80d9c807",
"shasum": ""
},
"require": {
"php": ">=7.2.5",
"symfony/polyfill-php80": "^1.16"
},
"require-dev": {
"symfony/var-dumper": "^4.4.9|^5.0.9|^6.0"
},
"type": "library",
"autoload": {
"psr-4": {
"Symfony\\Component\\VarExporter\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Nicolas Grekas",
"email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"description": "Allows exporting any serializable PHP data structure to plain PHP code",
"homepage": "https://symfony.com",
"keywords": [
"clone",
"construct",
"export",
"hydrate",
"instantiate",
"serialize"
],
"support": {
"source": "https://github.com/symfony/var-exporter/tree/v5.4.7"
},
"funding": [
{
"url": "https://symfony.com/sponsor",
"type": "custom"
},
{
"url": "https://github.com/fabpot",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
"time": "2022-03-31T17:09:19+00:00"
},
{
"name": "symfony/yaml",
"version": "v5.4.3",
"source": {
"type": "git",
"url": "https://github.com/symfony/yaml.git",
"reference": "e80f87d2c9495966768310fc531b487ce64237a2"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/yaml/zipball/e80f87d2c9495966768310fc531b487ce64237a2",
"reference": "e80f87d2c9495966768310fc531b487ce64237a2",
"shasum": ""
},
"require": {
"php": ">=7.2.5",
"symfony/deprecation-contracts": "^2.1|^3",
"symfony/polyfill-ctype": "^1.8"
},
"conflict": {
"symfony/console": "<5.3"
},
"require-dev": {
"symfony/console": "^5.3|^6.0"
},
"suggest": {
"symfony/console": "For validating YAML files using the lint command"
},
"bin": [
"Resources/bin/yaml-lint"
],
"type": "library",
"autoload": {
"psr-4": {
"Symfony\\Component\\Yaml\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Fabien Potencier",
"email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"description": "Loads and dumps YAML files",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/yaml/tree/v5.4.3"
},
"funding": [
{
"url": "https://symfony.com/sponsor",
"type": "custom"
},
{
"url": "https://github.com/fabpot",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
"time": "2022-01-26T16:32:32+00:00"
}
],
"packages-dev": [],
"aliases": [],
"minimum-stability": "stable",
"stability-flags": [],
"prefer-stable": true,
"prefer-lowest": false,
"platform": {
"php": ">=7.2.5",
"ext-ctype": "*",
"ext-iconv": "*"
},
"platform-dev": [],
"plugin-api-version": "2.3.0"
}

5
config/bundles.php Normal file
View File

@ -0,0 +1,5 @@
<?php
return [
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
];

View File

@ -0,0 +1,19 @@
framework:
cache:
# Unique name of your app: used to compute stable namespaces for cache keys.
#prefix_seed: your_vendor_name/app_name
# The "app" cache stores to the filesystem by default.
# The data in this cache should persist between deploys.
# Other options include:
# Redis
#app: cache.adapter.redis
#default_redis_provider: redis://localhost
# APCu (not recommended with heavy random-write workloads as memory fragmentation can cause perf issues)
#app: cache.adapter.apcu
# Namespaced pools use the above "app" backend by default
#pools:
#my.dedicated.cache: null

View File

@ -0,0 +1,24 @@
# see https://symfony.com/doc/current/reference/configuration/framework.html
framework:
secret: '%env(APP_SECRET)%'
#csrf_protection: true
http_method_override: false
# Enables session support. Note that the session will ONLY be started if you read or write from it.
# Remove or comment this section to explicitly disable session support.
session:
handler_id: null
cookie_secure: auto
cookie_samesite: lax
storage_factory_id: session.storage.factory.native
#esi: true
#fragments: true
php_errors:
log: true
when@test:
framework:
test: true
session:
storage_factory_id: session.storage.factory.mock_file

View File

@ -0,0 +1,12 @@
framework:
router:
utf8: true
# Configure how to generate URLs in non-HTTP contexts, such as CLI commands.
# See https://symfony.com/doc/current/routing.html#generating-urls-in-commands
#default_uri: http://localhost
when@prod:
framework:
router:
strict_requirements: null

5
config/preload.php Normal file
View File

@ -0,0 +1,5 @@
<?php
if (file_exists(dirname(__DIR__).'/var/cache/prod/App_KernelProdContainer.preload.php')) {
require dirname(__DIR__).'/var/cache/prod/App_KernelProdContainer.preload.php';
}

3
config/routes.yaml Normal file
View File

@ -0,0 +1,3 @@
index:
path: /loginAppSaml
controller: App\Controller\MainController::loginAppSaml

View File

@ -0,0 +1,4 @@
when@dev:
_errors:
resource: '@FrameworkBundle/Resources/config/routing/errors.xml'
prefix: /_error

24
config/services.yaml Normal file
View File

@ -0,0 +1,24 @@
# This file is the entry point to configure your own services.
# Files in the packages/ subdirectory configure your dependencies.
# Put parameters here that don't need to change on each machine where the app is deployed
# https://symfony.com/doc/current/best_practices.html#use-parameters-for-application-configuration
parameters:
services:
# default configuration for services in *this* file
_defaults:
autowire: true # Automatically injects dependencies in your services.
autoconfigure: true # Automatically registers your services as commands, event subscribers, etc.
# makes classes in src/ available to be used as services
# this creates a service per class whose id is the fully-qualified class name
App\:
resource: '../src/'
exclude:
- '../src/DependencyInjection/'
- '../src/Entity/'
- '../src/Kernel.php'
# add more service definitions when explicit configuration is needed
# please note that last definitions always *replace* previous ones

View File

@ -0,0 +1,59 @@
<VirtualHost *:80>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
#ServerName www.example.com
ServerAdmin webmaster@localhost
DocumentRoot /loginapp/public
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
#LogLevel info ssl:warn
LogLevel info
ErrorLog |/bin/cat
CustomLog |/bin/cat combined
Header merge Access-Control-Allow-Origin "*"
Header merge Access-Control-Allow-Headers "X-Requested-With"
AddType image/svg+xml svg svgz
AddEncoding gzip svgz
#Alias /page/image /portal/app/uploads/portal_images
Alias /build /loginapp/public/build
Alias /images /loginapp/public/images
#Alias /img /loginapp/public/img
Alias /js /loginapp/public/js
Alias /css /loginapp/public/css
Alias /bundles /loginapp/public/bundles
Alias /favicon.ico /loginapp/public/favicon.ico
Alias /logiinapp /loginapp/public
<Directory "/loginapp/public">
Header merge Access-Control-Allow-Origin "*"
DirectoryIndex app_docker.php
Require all granted
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ /app_docker.php [QSA,L]
</IfModule>
</Directory>
#<Directory "/portal/app/uploads">
# Require all granted
#</Directory>
<FilesMatch "\.(png|jp?g|gif|ico|css|map|woff?|eot|svg|ttf|js|json|pdf)">
ExpiresActive on
ExpiresDefault "access plus 1 weeks"
</FilesMatch>
</VirtualHost>

View File

@ -0,0 +1,114 @@
FROM ubuntu:20.04
ARG HTTP_PROXY=
ARG HTTPS_PROXY=
ARG http_proxy=
ARG https_proxy=
ENV WAITFORIT_VERSION="v2.4.1"
ARG PHP_VERSION="8.1"
ENV PHP_VERSION $PHP_VERSION
RUN export DEBIAN_FRONTEND=noninteractive && \
apt-get update -y && \
apt-get install -y software-properties-common && \
add-apt-repository ppa:ondrej/php && \
apt-get update -y && \
apt-get install -y --no-install-recommends \
git bash wget ca-certificates supervisor cron rsyslog mysql-client jq \
mutt tree vim python python3 python3-setuptools python3-pip make \
php${PHP_VERSION}-cli php${PHP_VERSION}-ldap php${PHP_VERSION}-soap \
php${PHP_VERSION}-intl php${PHP_VERSION}-curl php${PHP_VERSION}-gd \
php${PHP_VERSION}-xml php${PHP_VERSION}-bcmath \
php${PHP_VERSION}-zip php${PHP_VERSION}-fpm \
php${PHP_VERSION}-mbstring \
php${PHP_VERSION}-ssh2 libxml2-utils \
locales \
apache2 \
ssh-client \
acl moreutils \
sudo
# Set fr_FR locale
RUN sed -i -e 's/# fr_FR.UTF-8 UTF-8/fr_FR.UTF-8 UTF-8/' /etc/locale.gen && \
dpkg-reconfigure --frontend=noninteractive locales && \
update-locale LANG=fr_FR.UTF-8
ENV LC_ALL fr_FR.UTF-8
ENV LANG fr_FR.UTF-8
ENV LANGUAGE fr_FR.UTF-8
# Waitforit - Wait for all service is running before launch tests
RUN wget -q -O /usr/local/bin/waitforit https://github.com/maxcnunes/waitforit/releases/download/$WAITFORIT_VERSION/waitforit-linux_amd64 \
&& chmod +x /usr/local/bin/waitforit
# Install superfsmon to restart supervisor programs on file changes
RUN pip3 install wheel superfsmon
VOLUME /loginapp
VOLUME /loginapp/var/logs
VOLUME /loginapp/var/cache
# Install composer
COPY install-composer.sh /root/install-composer.sh
RUN chmod +x /root/install-composer.sh &&\
/root/install-composer.sh &&\
rm -f /root/install-composer.sh
# On active les mods d'apache nécessaires
RUN a2enmod rewrite
RUN a2enmod proxy_fcgi setenvif
RUN a2enconf php8.1-fpm
RUN a2enmod proxy
RUN a2enmod expires
RUN a2enmod headers
# On injecte les bonnes configs apache et php-fpm
COPY 000-default.conf /etc/apache2/sites-available/000-default.conf
COPY www.conf /etc/php/8.1/fpm/pool.d/www.conf
# Allow passing of environment variables to PHP
# Used in web/app_dev.php to detect docker-compose environment
RUN for i in /etc/php/*; do mkdir -p $i/cli/conf.d; echo 'variables_order = "EGPCS"' > $i/cli/conf.d/mse.ini; done;
EXPOSE 5000
EXPOSE 80
WORKDIR /loginapp
# Flag to allow access to app_dev.php from Docker host
ENV MSE_DOCKER_COMPOSER_DEVELOPMENT=yes
COPY docker-entrypoint.sh /docker-entrypoint.sh
RUN chmod +x /docker-entrypoint.sh
COPY first-run.sh /root/first-run.sh
RUN chmod +x /root/first-run.sh
# On crée un point d'entrée non restrictif et non tracké pour être utilisé par apache
COPY app_docker.php /root/app_docker.php
# Disable rsyslog privileges drop to allow stdout logging
RUN sed -i 's/^\$\(PrivDropTo.*\)$/#\1/' /etc/rsyslog.conf
RUN sed -i '/imklog/s/^/#/' /etc/rsyslog.conf
COPY rsyslog.conf /etc/rsyslog.d/loginapp.conf
COPY supervisor.ini /etc/supervisor/supervisor.ini
COPY php.ini /etc/php/7.4/fpm/php.ini
VOLUME /container-lifecycle
RUN wget -O- https://github.com/boxboat/fixuid/releases/download/v0.5.1/fixuid-0.5.1-linux-amd64.tar.gz | tar -C /usr/local/bin -xzf - \
&& chown root:root /usr/local/bin/fixuid \
&& chmod 4755 /usr/local/bin/fixuid \
&& mkdir -p /etc/fixuid
COPY fixuid.yml /etc/fixuid/config.yml
ENTRYPOINT ["/usr/local/bin/fixuid"]
RUN echo "www-data ALL=(ALL:ALL) NOPASSWD: ALL" > /etc/sudoers.d/www-data
USER www-data
CMD ["/docker-entrypoint.sh"]

View File

@ -0,0 +1,17 @@
<?php
use Symfony\Component\ErrorHandler\Debug;
use Symfony\Component\HttpFoundation\Request;
require __DIR__.'/../vendor/autoload.php';
Debug::enable();
$kernel = new AppKernel('dev', true);
if (PHP_VERSION_ID < 70000) {
$kernel->loadClassCache();
}
Request::setTrustedProxies(['192.168.0.0/24'], Request::HEADER_X_FORWARDED_ALL);
$request = Request::createFromGlobals();
$response = $kernel->handle($request);
$response->send();
$kernel->terminate($request, $response);

View File

@ -0,0 +1,34 @@
#!/bin/bash
set -eo pipefail
export COMPOSER_HOME=/tmp/composer
COMPOSER_AUTH="${COMPOSER_HOME}/auth.json"
function fix_composer_auth {
if [ ! -f "${COMPOSER_AUTH}" ]; then
return
fi
GITHUB_TOKEN=$(cat "${COMPOSER_AUTH}" | jq -r '.["github-oauth"]["github.com"]')
if [ ! -z "${GITHUB_TOKEN}" ]; then
GITHUB_USERNAME=$(cat "${COMPOSER_AUTH}" | jq -r '.["http-basic"]["github.com"].username')
if [ -z "${GITHUB_USERNAME}" ]; then
echo -n "Identifiant Github ? "
read GITHUB_USERNAME
fi
cat "${COMPOSER_AUTH}" | jq ".[\"http-basic\"][\"github.com\"] = {\"username\": \"${GITHUB_USERNAME}\", \"password\":\"${GITHUB_TOKEN}\"}" | sponge "${COMPOSER_AUTH}"
cat "${COMPOSER_AUTH}" | jq "del(.[\"github-oauth\"])" | sponge "${COMPOSER_AUTH}"
fi
}
function main {
fix_composer_auth
php composer.phar ${@:1}
}
main $@

View File

@ -0,0 +1,18 @@
#!/bin/bash
set -eo pipefail
if [ ! -e /container-lifecycle/first_run ]; then
echo "First loginapp run detected. Initializing environment..."
sudo -E /root/first-run.sh
sudo touch /container-lifecycle/first_run
fi
# Récupération des clés SSH de l'hôte pour Composer
if [ -d '/root/.host-ssh' ] && [ $(id -u) -eq 0 ]; then
sudo rm -rf /root/.ssh
sudo cp -r /root/.host-ssh /root/.ssh
sudo chown -R root: /root/.ssh
fi
sudo -E /usr/bin/supervisord -c /etc/supervisor/supervisor.ini

View File

@ -0,0 +1,14 @@
#!/bin/bash
set -xeo pipefail
sudo cp /root/app_docker.php /loginapp/public/app_docker.php
[ ! -d /var/www/.config ] && sudo mkdir -p /var/www/.config
[ -d /var/www/.config ] && sudo chown -R www-data: /var/www/.config
[ ! -d /var/www/.cache ] && sudo mkdir -p /var/www/.cache
[ -d /var/www/.cache ] && sudo chown -R www-data: /var/www/.cache
sudo chown -R www-data: /loginapp

View File

@ -0,0 +1,7 @@
user: www-data
group: www-data
paths:
- /loginapp/node_modules
- /loginapp/vendor
- /loginapp
- /var/www

View File

@ -0,0 +1,19 @@
#!/bin/bash
set -eo pipefail
EXPECTED_SIGNATURE="$(wget -q -O- https://composer.github.io/installer.sig)"
wget -q -O composer-setup.php https://getcomposer.org/installer
ACTUAL_SIGNATURE="$(php -r "echo hash_file('SHA384', 'composer-setup.php');")"
if [ "$EXPECTED_SIGNATURE" != "$ACTUAL_SIGNATURE" ]
then
>&2 echo 'ERROR: Invalid installer signature'
rm composer-setup.php
exit 1
fi
php composer-setup.php
RESULT=$?
rm composer-setup.php
exit $RESULT

1938
containers/loginapp/php.ini Normal file
View File

@ -0,0 +1,1938 @@
[PHP]
;;;;;;;;;;;;;;;;;;;
; About php.ini ;
;;;;;;;;;;;;;;;;;;;
; PHP's initialization file, generally called php.ini, is responsible for
; configuring many of the aspects of PHP's behavior.
; PHP attempts to find and load this configuration from a number of locations.
; The following is a summary of its search order:
; 1. SAPI module specific location.
; 2. The PHPRC environment variable. (As of PHP 5.2.0)
; 3. A number of predefined registry keys on Windows (As of PHP 5.2.0)
; 4. Current working directory (except CLI)
; 5. The web server's directory (for SAPI modules), or directory of PHP
; (otherwise in Windows)
; 6. The directory from the --with-config-file-path compile time option, or the
; Windows directory (usually C:\windows)
; See the PHP docs for more specific information.
; http://php.net/configuration.file
; The syntax of the file is extremely simple. Whitespace and lines
; beginning with a semicolon are silently ignored (as you probably guessed).
; Section headers (e.g. [Foo]) are also silently ignored, even though
; they might mean something in the future.
; Directives following the section heading [PATH=/www/mysite] only
; apply to PHP files in the /www/mysite directory. Directives
; following the section heading [HOST=www.example.com] only apply to
; PHP files served from www.example.com. Directives set in these
; special sections cannot be overridden by user-defined INI files or
; at runtime. Currently, [PATH=] and [HOST=] sections only work under
; CGI/FastCGI.
; http://php.net/ini.sections
; Directives are specified using the following syntax:
; directive = value
; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
; Directives are variables used to configure PHP or PHP extensions.
; There is no name validation. If PHP can't find an expected
; directive because it is not set or is mistyped, a default value will be used.
; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one
; of the INI constants (On, Off, True, False, Yes, No and None) or an expression
; (e.g. E_ALL & ~E_NOTICE), a quoted string ("bar"), or a reference to a
; previously set variable or directive (e.g. ${foo})
; Expressions in the INI file are limited to bitwise operators and parentheses:
; | bitwise OR
; ^ bitwise XOR
; & bitwise AND
; ~ bitwise NOT
; ! boolean NOT
; Boolean flags can be turned on using the values 1, On, True or Yes.
; They can be turned off using the values 0, Off, False or No.
; An empty string can be denoted by simply not writing anything after the equal
; sign, or by using the None keyword:
; foo = ; sets foo to an empty string
; foo = None ; sets foo to an empty string
; foo = "None" ; sets foo to the string 'None'
; If you use constants in your value, and these constants belong to a
; dynamically loaded extension (either a PHP extension or a Zend extension),
; you may only use these constants *after* the line that loads the extension.
;;;;;;;;;;;;;;;;;;;
; About this file ;
;;;;;;;;;;;;;;;;;;;
; PHP comes packaged with two INI files. One that is recommended to be used
; in production environments and one that is recommended to be used in
; development environments.
; php.ini-production contains settings which hold security, performance and
; best practices at its core. But please be aware, these settings may break
; compatibility with older or less security conscience applications. We
; recommending using the production ini in production and testing environments.
; php.ini-development is very similar to its production variant, except it is
; much more verbose when it comes to errors. We recommend using the
; development version only in development environments, as errors shown to
; application users can inadvertently leak otherwise secure information.
; This is the php.ini-production INI file.
;;;;;;;;;;;;;;;;;;;
; Quick Reference ;
;;;;;;;;;;;;;;;;;;;
; The following are all the settings which are different in either the production
; or development versions of the INIs with respect to PHP's default behavior.
; Please see the actual settings later in the document for more details as to why
; we recommend these changes in PHP's behavior.
; display_errors
; Default Value: On
; Development Value: On
; Production Value: Off
; display_startup_errors
; Default Value: Off
; Development Value: On
; Production Value: Off
; error_reporting
; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
; Development Value: E_ALL
; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
; html_errors
; Default Value: On
; Development Value: On
; Production value: On
; log_errors
; Default Value: Off
; Development Value: On
; Production Value: On
; max_input_time
; Default Value: -1 (Unlimited)
; Development Value: 60 (60 seconds)
; Production Value: 60 (60 seconds)
; output_buffering
; Default Value: Off
; Development Value: 4096
; Production Value: 4096
; register_argc_argv
; Default Value: On
; Development Value: Off
; Production Value: Off
; request_order
; Default Value: None
; Development Value: "GP"
; Production Value: "GP"
; session.gc_divisor
; Default Value: 100
; Development Value: 1000
; Production Value: 1000
; session.sid_bits_per_character
; Default Value: 4
; Development Value: 5
; Production Value: 5
; short_open_tag
; Default Value: On
; Development Value: Off
; Production Value: Off
; variables_order
; Default Value: "EGPCS"
; Development Value: "GPCS"
; Production Value: "GPCS"
;;;;;;;;;;;;;;;;;;;;
; php.ini Options ;
;;;;;;;;;;;;;;;;;;;;
; Name for user-defined php.ini (.htaccess) files. Default is ".user.ini"
;user_ini.filename = ".user.ini"
; To disable this feature set this option to an empty value
;user_ini.filename =
; TTL for user-defined php.ini files (time-to-live) in seconds. Default is 300 seconds (5 minutes)
;user_ini.cache_ttl = 300
;;;;;;;;;;;;;;;;;;;;
; Language Options ;
;;;;;;;;;;;;;;;;;;;;
; Enable the PHP scripting language engine under Apache.
; http://php.net/engine
engine = On
; This directive determines whether or not PHP will recognize code between
; <? and ?> tags as PHP source which should be processed as such. It is
; generally recommended that <?php and ?> should be used and that this feature
; should be disabled, as enabling it may result in issues when generating XML
; documents, however this remains supported for backward compatibility reasons.
; Note that this directive does not control the <?= shorthand tag, which can be
; used regardless of this directive.
; Default Value: On
; Development Value: Off
; Production Value: Off
; http://php.net/short-open-tag
short_open_tag = Off
; The number of significant digits displayed in floating point numbers.
; http://php.net/precision
precision = 14
; Output buffering is a mechanism for controlling how much output data
; (excluding headers and cookies) PHP should keep internally before pushing that
; data to the client. If your application's output exceeds this setting, PHP
; will send that data in chunks of roughly the size you specify.
; Turning on this setting and managing its maximum buffer size can yield some
; interesting side-effects depending on your application and web server.
; You may be able to send headers and cookies after you've already sent output
; through print or echo. You also may see performance benefits if your server is
; emitting less packets due to buffered output versus PHP streaming the output
; as it gets it. On production servers, 4096 bytes is a good setting for performance
; reasons.
; Note: Output buffering can also be controlled via Output Buffering Control
; functions.
; Possible Values:
; On = Enabled and buffer is unlimited. (Use with caution)
; Off = Disabled
; Integer = Enables the buffer and sets its maximum size in bytes.
; Note: This directive is hardcoded to Off for the CLI SAPI
; Default Value: Off
; Development Value: 4096
; Production Value: 4096
; http://php.net/output-buffering
output_buffering = 4096
; You can redirect all of the output of your scripts to a function. For
; example, if you set output_handler to "mb_output_handler", character
; encoding will be transparently converted to the specified encoding.
; Setting any output handler automatically turns on output buffering.
; Note: People who wrote portable scripts should not depend on this ini
; directive. Instead, explicitly set the output handler using ob_start().
; Using this ini directive may cause problems unless you know what script
; is doing.
; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler"
; and you cannot use both "ob_gzhandler" and "zlib.output_compression".
; Note: output_handler must be empty if this is set 'On' !!!!
; Instead you must use zlib.output_handler.
; http://php.net/output-handler
;output_handler =
; URL rewriter function rewrites URL on the fly by using
; output buffer. You can set target tags by this configuration.
; "form" tag is special tag. It will add hidden input tag to pass values.
; Refer to session.trans_sid_tags for usage.
; Default Value: "form="
; Development Value: "form="
; Production Value: "form="
;url_rewriter.tags
; URL rewriter will not rewrite absolute URL nor form by default. To enable
; absolute URL rewrite, allowed hosts must be defined at RUNTIME.
; Refer to session.trans_sid_hosts for more details.
; Default Value: ""
; Development Value: ""
; Production Value: ""
;url_rewriter.hosts
; Transparent output compression using the zlib library
; Valid values for this option are 'off', 'on', or a specific buffer size
; to be used for compression (default is 4KB)
; Note: Resulting chunk size may vary due to nature of compression. PHP
; outputs chunks that are few hundreds bytes each as a result of
; compression. If you prefer a larger chunk size for better
; performance, enable output_buffering in addition.
; Note: You need to use zlib.output_handler instead of the standard
; output_handler, or otherwise the output will be corrupted.
; http://php.net/zlib.output-compression
zlib.output_compression = Off
; http://php.net/zlib.output-compression-level
;zlib.output_compression_level = -1
; You cannot specify additional output handlers if zlib.output_compression
; is activated here. This setting does the same as output_handler but in
; a different order.
; http://php.net/zlib.output-handler
;zlib.output_handler =
; Implicit flush tells PHP to tell the output layer to flush itself
; automatically after every output block. This is equivalent to calling the
; PHP function flush() after each and every call to print() or echo() and each
; and every HTML block. Turning this option on has serious performance
; implications and is generally recommended for debugging purposes only.
; http://php.net/implicit-flush
; Note: This directive is hardcoded to On for the CLI SAPI
implicit_flush = Off
; The unserialize callback function will be called (with the undefined class'
; name as parameter), if the unserializer finds an undefined class
; which should be instantiated. A warning appears if the specified function is
; not defined, or if the function doesn't include/implement the missing class.
; So only set this entry, if you really want to implement such a
; callback-function.
unserialize_callback_func =
; When floats & doubles are serialized, store serialize_precision significant
; digits after the floating point. The default value ensures that when floats
; are decoded with unserialize, the data will remain the same.
; The value is also used for json_encode when encoding double values.
; If -1 is used, then dtoa mode 0 is used which automatically select the best
; precision.
serialize_precision = -1
; open_basedir, if set, limits all file operations to the defined directory
; and below. This directive makes most sense if used in a per-directory
; or per-virtualhost web server configuration file.
; Note: disables the realpath cache
; http://php.net/open-basedir
;open_basedir =
; This directive allows you to disable certain functions for security reasons.
; It receives a comma-delimited list of function names.
; http://php.net/disable-functions
disable_functions = pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,
; This directive allows you to disable certain classes for security reasons.
; It receives a comma-delimited list of class names.
; http://php.net/disable-classes
disable_classes =
; Colors for Syntax Highlighting mode. Anything that's acceptable in
; <span style="color: ???????"> would work.
; http://php.net/syntax-highlighting
;highlight.string = #DD0000
;highlight.comment = #FF9900
;highlight.keyword = #007700
;highlight.default = #0000BB
;highlight.html = #000000
; If enabled, the request will be allowed to complete even if the user aborts
; the request. Consider enabling it if executing long requests, which may end up
; being interrupted by the user or a browser timing out. PHP's default behavior
; is to disable this feature.
; http://php.net/ignore-user-abort
;ignore_user_abort = On
; Determines the size of the realpath cache to be used by PHP. This value should
; be increased on systems where PHP opens many files to reflect the quantity of
; the file operations performed.
; Note: if open_basedir is set, the cache is disabled
; http://php.net/realpath-cache-size
;realpath_cache_size = 4096k
; Duration of time, in seconds for which to cache realpath information for a given
; file or directory. For systems with rarely changing files, consider increasing this
; value.
; http://php.net/realpath-cache-ttl
;realpath_cache_ttl = 120
; Enables or disables the circular reference collector.
; http://php.net/zend.enable-gc
zend.enable_gc = On
; If enabled, scripts may be written in encodings that are incompatible with
; the scanner. CP936, Big5, CP949 and Shift_JIS are the examples of such
; encodings. To use this feature, mbstring extension must be enabled.
; Default: Off
;zend.multibyte = Off
; Allows to set the default encoding for the scripts. This value will be used
; unless "declare(encoding=...)" directive appears at the top of the script.
; Only affects if zend.multibyte is set.
; Default: ""
;zend.script_encoding =
;;;;;;;;;;;;;;;;;
; Miscellaneous ;
;;;;;;;;;;;;;;;;;
; Decides whether PHP may expose the fact that it is installed on the server
; (e.g. by adding its signature to the Web server header). It is no security
; threat in any way, but it makes it possible to determine whether you use PHP
; on your server or not.
; http://php.net/expose-php
expose_php = Off
;;;;;;;;;;;;;;;;;;;
; Resource Limits ;
;;;;;;;;;;;;;;;;;;;
; Maximum execution time of each script, in seconds
; http://php.net/max-execution-time
; Note: This directive is hardcoded to 0 for the CLI SAPI
max_execution_time = 30
; Maximum amount of time each script may spend parsing request data. It's a good
; idea to limit this time on productions servers in order to eliminate unexpectedly
; long running scripts.
; Note: This directive is hardcoded to -1 for the CLI SAPI
; Default Value: -1 (Unlimited)
; Development Value: 60 (60 seconds)
; Production Value: 60 (60 seconds)
; http://php.net/max-input-time
max_input_time = 60
; Maximum input variable nesting level
; http://php.net/max-input-nesting-level
;max_input_nesting_level = 64
; How many GET/POST/COOKIE input variables may be accepted
;max_input_vars = 1000
; Maximum amount of memory a script may consume (128MB)
; http://php.net/memory-limit
memory_limit = 128M
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Error handling and logging ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; This directive informs PHP of which errors, warnings and notices you would like
; it to take action for. The recommended way of setting values for this
; directive is through the use of the error level constants and bitwise
; operators. The error level constants are below here for convenience as well as
; some common settings and their meanings.
; By default, PHP is set to take action on all errors, notices and warnings EXCEPT
; those related to E_NOTICE and E_STRICT, which together cover best practices and
; recommended coding standards in PHP. For performance reasons, this is the
; recommend error reporting setting. Your production server shouldn't be wasting
; resources complaining about best practices and coding standards. That's what
; development servers and development settings are for.
; Note: The php.ini-development file has this setting as E_ALL. This
; means it pretty much reports everything which is exactly what you want during
; development and early testing.
;
; Error Level Constants:
; E_ALL - All errors and warnings (includes E_STRICT as of PHP 5.4.0)
; E_ERROR - fatal run-time errors
; E_RECOVERABLE_ERROR - almost fatal run-time errors
; E_WARNING - run-time warnings (non-fatal errors)
; E_PARSE - compile-time parse errors
; E_NOTICE - run-time notices (these are warnings which often result
; from a bug in your code, but it's possible that it was
; intentional (e.g., using an uninitialized variable and
; relying on the fact it is automatically initialized to an
; empty string)
; E_STRICT - run-time notices, enable to have PHP suggest changes
; to your code which will ensure the best interoperability
; and forward compatibility of your code
; E_CORE_ERROR - fatal errors that occur during PHP's initial startup
; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's
; initial startup
; E_COMPILE_ERROR - fatal compile-time errors
; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
; E_USER_ERROR - user-generated error message
; E_USER_WARNING - user-generated warning message
; E_USER_NOTICE - user-generated notice message
; E_DEPRECATED - warn about code that will not work in future versions
; of PHP
; E_USER_DEPRECATED - user-generated deprecation warnings
;
; Common Values:
; E_ALL (Show all errors, warnings and notices including coding standards.)
; E_ALL & ~E_NOTICE (Show all errors, except for notices)
; E_ALL & ~E_NOTICE & ~E_STRICT (Show all errors, except for notices and coding standards warnings.)
; E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR (Show only errors)
; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
; Development Value: E_ALL
; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
; http://php.net/error-reporting
error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT
; This directive controls whether or not and where PHP will output errors,
; notices and warnings too. Error output is very useful during development, but
; it could be very dangerous in production environments. Depending on the code
; which is triggering the error, sensitive information could potentially leak
; out of your application such as database usernames and passwords or worse.
; For production environments, we recommend logging errors rather than
; sending them to STDOUT.
; Possible Values:
; Off = Do not display any errors
; stderr = Display errors to STDERR (affects only CGI/CLI binaries!)
; On or stdout = Display errors to STDOUT
; Default Value: On
; Development Value: On
; Production Value: Off
; http://php.net/display-errors
display_errors = Off
; The display of errors which occur during PHP's startup sequence are handled
; separately from display_errors. PHP's default behavior is to suppress those
; errors from clients. Turning the display of startup errors on can be useful in
; debugging configuration problems. We strongly recommend you
; set this to 'off' for production servers.
; Default Value: Off
; Development Value: On
; Production Value: Off
; http://php.net/display-startup-errors
display_startup_errors = Off
; Besides displaying errors, PHP can also log errors to locations such as a
; server-specific log, STDERR, or a location specified by the error_log
; directive found below. While errors should not be displayed on productions
; servers they should still be monitored and logging is a great way to do that.
; Default Value: Off
; Development Value: On
; Production Value: On
; http://php.net/log-errors
log_errors = On
; Set maximum length of log_errors. In error_log information about the source is
; added. The default is 1024 and 0 allows to not apply any maximum length at all.
; http://php.net/log-errors-max-len
log_errors_max_len = 1024
; Do not log repeated messages. Repeated errors must occur in same file on same
; line unless ignore_repeated_source is set true.
; http://php.net/ignore-repeated-errors
ignore_repeated_errors = Off
; Ignore source of message when ignoring repeated messages. When this setting
; is On you will not log errors with repeated messages from different files or
; source lines.
; http://php.net/ignore-repeated-source
ignore_repeated_source = Off
; If this parameter is set to Off, then memory leaks will not be shown (on
; stdout or in the log). This has only effect in a debug compile, and if
; error reporting includes E_WARNING in the allowed list
; http://php.net/report-memleaks
report_memleaks = On
; This setting is on by default.
;report_zend_debug = 0
; Store the last error/warning message in $php_errormsg (boolean). Setting this value
; to On can assist in debugging and is appropriate for development servers. It should
; however be disabled on production servers.
; This directive is DEPRECATED.
; Default Value: Off
; Development Value: Off
; Production Value: Off
; http://php.net/track-errors
;track_errors = Off
; Turn off normal error reporting and emit XML-RPC error XML
; http://php.net/xmlrpc-errors
;xmlrpc_errors = 0
; An XML-RPC faultCode
;xmlrpc_error_number = 0
; When PHP displays or logs an error, it has the capability of formatting the
; error message as HTML for easier reading. This directive controls whether
; the error message is formatted as HTML or not.
; Note: This directive is hardcoded to Off for the CLI SAPI
; Default Value: On
; Development Value: On
; Production value: On
; http://php.net/html-errors
html_errors = On
; If html_errors is set to On *and* docref_root is not empty, then PHP
; produces clickable error messages that direct to a page describing the error
; or function causing the error in detail.
; You can download a copy of the PHP manual from http://php.net/docs
; and change docref_root to the base URL of your local copy including the
; leading '/'. You must also specify the file extension being used including
; the dot. PHP's default behavior is to leave these settings empty, in which
; case no links to documentation are generated.
; Note: Never use this feature for production boxes.
; http://php.net/docref-root
; Examples
;docref_root = "/phpmanual/"
; http://php.net/docref-ext
;docref_ext = .html
; String to output before an error message. PHP's default behavior is to leave
; this setting blank.
; http://php.net/error-prepend-string
; Example:
;error_prepend_string = "<span style='color: #ff0000'>"
; String to output after an error message. PHP's default behavior is to leave
; this setting blank.
; http://php.net/error-append-string
; Example:
;error_append_string = "</span>"
; Log errors to specified file. PHP's default behavior is to leave this value
; empty.
; http://php.net/error-log
; Example:
;error_log = php_errors.log
; Log errors to syslog (Event Log on Windows).
;error_log = syslog
; The syslog ident is a string which is prepended to every message logged
; to syslog. Only used when error_log is set to syslog.
;syslog.ident = php
; The syslog facility is used to specify what type of program is logging
; the message. Only used when error_log is set to syslog.
;syslog.facility = user
; Set this to disable filtering control characters (the default).
; Some loggers only accept NVT-ASCII, others accept anything that's not
; control characters. If your logger accepts everything, then no filtering
; is needed at all.
; Allowed values are:
; ascii (all printable ASCII characters and NL)
; no-ctrl (all characters except control characters)
; all (all characters)
; raw (like "all", but messages are not split at newlines)
; http://php.net/syslog.filter
;syslog.filter = ascii
;windows.show_crt_warning
; Default value: 0
; Development value: 0
; Production value: 0
;;;;;;;;;;;;;;;;;
; Data Handling ;
;;;;;;;;;;;;;;;;;
; The separator used in PHP generated URLs to separate arguments.
; PHP's default setting is "&".
; http://php.net/arg-separator.output
; Example:
;arg_separator.output = "&amp;"
; List of separator(s) used by PHP to parse input URLs into variables.
; PHP's default setting is "&".
; NOTE: Every character in this directive is considered as separator!
; http://php.net/arg-separator.input
; Example:
;arg_separator.input = ";&"
; This directive determines which super global arrays are registered when PHP
; starts up. G,P,C,E & S are abbreviations for the following respective super
; globals: GET, POST, COOKIE, ENV and SERVER. There is a performance penalty
; paid for the registration of these arrays and because ENV is not as commonly
; used as the others, ENV is not recommended on productions servers. You
; can still get access to the environment variables through getenv() should you
; need to.
; Default Value: "EGPCS"
; Development Value: "GPCS"
; Production Value: "GPCS";
; http://php.net/variables-order
variables_order = "GPCS"
; This directive determines which super global data (G,P & C) should be
; registered into the super global array REQUEST. If so, it also determines
; the order in which that data is registered. The values for this directive
; are specified in the same manner as the variables_order directive,
; EXCEPT one. Leaving this value empty will cause PHP to use the value set
; in the variables_order directive. It does not mean it will leave the super
; globals array REQUEST empty.
; Default Value: None
; Development Value: "GP"
; Production Value: "GP"
; http://php.net/request-order
request_order = "GP"
; This directive determines whether PHP registers $argv & $argc each time it
; runs. $argv contains an array of all the arguments passed to PHP when a script
; is invoked. $argc contains an integer representing the number of arguments
; that were passed when the script was invoked. These arrays are extremely
; useful when running scripts from the command line. When this directive is
; enabled, registering these variables consumes CPU cycles and memory each time
; a script is executed. For performance reasons, this feature should be disabled
; on production servers.
; Note: This directive is hardcoded to On for the CLI SAPI
; Default Value: On
; Development Value: Off
; Production Value: Off
; http://php.net/register-argc-argv
register_argc_argv = Off
; When enabled, the ENV, REQUEST and SERVER variables are created when they're
; first used (Just In Time) instead of when the script starts. If these
; variables are not used within a script, having this directive on will result
; in a performance gain. The PHP directive register_argc_argv must be disabled
; for this directive to have any affect.
; http://php.net/auto-globals-jit
auto_globals_jit = On
; Whether PHP will read the POST data.
; This option is enabled by default.
; Most likely, you won't want to disable this option globally. It causes $_POST
; and $_FILES to always be empty; the only way you will be able to read the
; POST data will be through the php://input stream wrapper. This can be useful
; to proxy requests or to process the POST data in a memory efficient fashion.
; http://php.net/enable-post-data-reading
;enable_post_data_reading = Off
; Maximum size of POST data that PHP will accept.
; Its value may be 0 to disable the limit. It is ignored if POST data reading
; is disabled through enable_post_data_reading.
; http://php.net/post-max-size
post_max_size = 80M
; Automatically add files before PHP document.
; http://php.net/auto-prepend-file
auto_prepend_file =
; Automatically add files after PHP document.
; http://php.net/auto-append-file
auto_append_file =
; By default, PHP will output a media type using the Content-Type header. To
; disable this, simply set it to be empty.
;
; PHP's built-in default media type is set to text/html.
; http://php.net/default-mimetype
default_mimetype = "text/html"
; PHP's default character set is set to UTF-8.
; http://php.net/default-charset
default_charset = "UTF-8"
; PHP internal character encoding is set to empty.
; If empty, default_charset is used.
; http://php.net/internal-encoding
;internal_encoding =
; PHP input character encoding is set to empty.
; If empty, default_charset is used.
; http://php.net/input-encoding
;input_encoding =
; PHP output character encoding is set to empty.
; If empty, default_charset is used.
; See also output_buffer.
; http://php.net/output-encoding
;output_encoding =
;;;;;;;;;;;;;;;;;;;;;;;;;
; Paths and Directories ;
;;;;;;;;;;;;;;;;;;;;;;;;;
; UNIX: "/path1:/path2"
;include_path = ".:/usr/share/php"
;
; Windows: "\path1;\path2"
;include_path = ".;c:\php\includes"
;
; PHP's default setting for include_path is ".;/path/to/php/pear"
; http://php.net/include-path
; The root of the PHP pages, used only if nonempty.
; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
; if you are running php as a CGI under any web server (other than IIS)
; see documentation for security issues. The alternate is to use the
; cgi.force_redirect configuration below
; http://php.net/doc-root
doc_root =
; The directory under which PHP opens the script using /~username used only
; if nonempty.
; http://php.net/user-dir
user_dir =
; Directory in which the loadable extensions (modules) reside.
; http://php.net/extension-dir
;extension_dir = "./"
; On windows:
;extension_dir = "ext"
; Directory where the temporary files should be placed.
; Defaults to the system default (see sys_get_temp_dir)
;sys_temp_dir = "/tmp"
; Whether or not to enable the dl() function. The dl() function does NOT work
; properly in multithreaded servers, such as IIS or Zeus, and is automatically
; disabled on them.
; http://php.net/enable-dl
enable_dl = Off
; cgi.force_redirect is necessary to provide security running PHP as a CGI under
; most web servers. Left undefined, PHP turns this on by default. You can
; turn it off here AT YOUR OWN RISK
; **You CAN safely turn this off for IIS, in fact, you MUST.**
; http://php.net/cgi.force-redirect
;cgi.force_redirect = 1
; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
; every request. PHP's default behavior is to disable this feature.
;cgi.nph = 1
; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
; will look for to know it is OK to continue execution. Setting this variable MAY
; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
; http://php.net/cgi.redirect-status-env
;cgi.redirect_status_env =
; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI. PHP's
; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok
; what PATH_INFO is. For more information on PATH_INFO, see the cgi specs. Setting
; this to 1 will cause PHP CGI to fix its paths to conform to the spec. A setting
; of zero causes PHP to behave as before. Default is 1. You should fix your scripts
; to use SCRIPT_FILENAME rather than PATH_TRANSLATED.
; http://php.net/cgi.fix-pathinfo
;cgi.fix_pathinfo=1
; if cgi.discard_path is enabled, the PHP CGI binary can safely be placed outside
; of the web tree and people will not be able to circumvent .htaccess security.
;cgi.discard_path=1
; FastCGI under IIS supports the ability to impersonate
; security tokens of the calling client. This allows IIS to define the
; security context that the request runs under. mod_fastcgi under Apache
; does not currently support this feature (03/17/2002)
; Set to 1 if running under IIS. Default is zero.
; http://php.net/fastcgi.impersonate
;fastcgi.impersonate = 1
; Disable logging through FastCGI connection. PHP's default behavior is to enable
; this feature.
;fastcgi.logging = 0
; cgi.rfc2616_headers configuration option tells PHP what type of headers to
; use when sending HTTP response code. If set to 0, PHP sends Status: header that
; is supported by Apache. When this option is set to 1, PHP will send
; RFC2616 compliant header.
; Default is zero.
; http://php.net/cgi.rfc2616-headers
;cgi.rfc2616_headers = 0
; cgi.check_shebang_line controls whether CGI PHP checks for line starting with #!
; (shebang) at the top of the running script. This line might be needed if the
; script support running both as stand-alone script and via PHP CGI<. PHP in CGI
; mode skips this line and ignores its content if this directive is turned on.
; http://php.net/cgi.check-shebang-line
;cgi.check_shebang_line=1
;;;;;;;;;;;;;;;;
; File Uploads ;
;;;;;;;;;;;;;;;;
; Whether to allow HTTP file uploads.
; http://php.net/file-uploads
file_uploads = On
; Temporary directory for HTTP uploaded files (will use system default if not
; specified).
; http://php.net/upload-tmp-dir
;upload_tmp_dir =
; Maximum allowed size for uploaded files.
; http://php.net/upload-max-filesize
upload_max_filesize = 22M
; Maximum number of files that can be uploaded via a single request
max_file_uploads = 20
;;;;;;;;;;;;;;;;;;
; Fopen wrappers ;
;;;;;;;;;;;;;;;;;;
; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
; http://php.net/allow-url-fopen
allow_url_fopen = On
; Whether to allow include/require to open URLs (like http:// or ftp://) as files.
; http://php.net/allow-url-include
allow_url_include = Off
; Define the anonymous ftp password (your email address). PHP's default setting
; for this is empty.
; http://php.net/from
;from="john@doe.com"
; Define the User-Agent string. PHP's default setting for this is empty.
; http://php.net/user-agent
;user_agent="PHP"
; Default timeout for socket based streams (seconds)
; http://php.net/default-socket-timeout
default_socket_timeout = 60
; If your scripts have to deal with files from Macintosh systems,
; or you are running on a Mac and need to deal with files from
; unix or win32 systems, setting this flag will cause PHP to
; automatically detect the EOL character in those files so that
; fgets() and file() will work regardless of the source of the file.
; http://php.net/auto-detect-line-endings
;auto_detect_line_endings = Off
;;;;;;;;;;;;;;;;;;;;;;
; Dynamic Extensions ;
;;;;;;;;;;;;;;;;;;;;;;
; If you wish to have an extension loaded automatically, use the following
; syntax:
;
; extension=modulename
;
; For example:
;
; extension=mysqli
;
; When the extension library to load is not located in the default extension
; directory, You may specify an absolute path to the library file:
;
; extension=/path/to/extension/mysqli.so
;
; Note : The syntax used in previous PHP versions ('extension=<ext>.so' and
; 'extension='php_<ext>.dll') is supported for legacy reasons and may be
; deprecated in a future PHP major version. So, when it is possible, please
; move to the new ('extension=<ext>) syntax.
;
; Notes for Windows environments :
;
; - Many DLL files are located in the extensions/ (PHP 4) or ext/ (PHP 5+)
; extension folders as well as the separate PECL DLL download (PHP 5+).
; Be sure to appropriately set the extension_dir directive.
;
;extension=bz2
;extension=curl
;extension=fileinfo
;extension=gd2
;extension=gettext
;extension=gmp
;extension=intl
;extension=imap
;extension=interbase
;extension=ldap
;extension=mbstring
;extension=exif ; Must be after mbstring as it depends on it
;extension=mysqli
;extension=oci8_12c ; Use with Oracle Database 12c Instant Client
;extension=odbc
;extension=openssl
;extension=pdo_firebird
;extension=pdo_mysql
;extension=pdo_oci
;extension=pdo_odbc
;extension=pdo_pgsql
;extension=pdo_sqlite
;extension=pgsql
;extension=shmop
; The MIBS data available in the PHP distribution must be installed.
; See http://www.php.net/manual/en/snmp.installation.php
;extension=snmp
;extension=soap
;extension=sockets
;extension=sodium
;extension=sqlite3
;extension=tidy
;extension=xmlrpc
;extension=xsl
;;;;;;;;;;;;;;;;;;;
; Module Settings ;
;;;;;;;;;;;;;;;;;;;
[CLI Server]
; Whether the CLI web server uses ANSI color coding in its terminal output.
cli_server.color = On
[Date]
; Defines the default timezone used by the date functions
; http://php.net/date.timezone
;date.timezone =
; http://php.net/date.default-latitude
;date.default_latitude = 31.7667
; http://php.net/date.default-longitude
;date.default_longitude = 35.2333
; http://php.net/date.sunrise-zenith
;date.sunrise_zenith = 90.583333
; http://php.net/date.sunset-zenith
;date.sunset_zenith = 90.583333
[filter]
; http://php.net/filter.default
;filter.default = unsafe_raw
; http://php.net/filter.default-flags
;filter.default_flags =
[iconv]
; Use of this INI entry is deprecated, use global input_encoding instead.
; If empty, default_charset or input_encoding or iconv.input_encoding is used.
; The precedence is: default_charset < input_encoding < iconv.input_encoding
;iconv.input_encoding =
; Use of this INI entry is deprecated, use global internal_encoding instead.
; If empty, default_charset or internal_encoding or iconv.internal_encoding is used.
; The precedence is: default_charset < internal_encoding < iconv.internal_encoding
;iconv.internal_encoding =
; Use of this INI entry is deprecated, use global output_encoding instead.
; If empty, default_charset or output_encoding or iconv.output_encoding is used.
; The precedence is: default_charset < output_encoding < iconv.output_encoding
; To use an output encoding conversion, iconv's output handler must be set
; otherwise output encoding conversion cannot be performed.
;iconv.output_encoding =
[imap]
; rsh/ssh logins are disabled by default. Use this INI entry if you want to
; enable them. Note that the IMAP library does not filter mailbox names before
; passing them to rsh/ssh command, thus passing untrusted data to this function
; with rsh/ssh enabled is insecure.
;imap.enable_insecure_rsh=0
[intl]
;intl.default_locale =
; This directive allows you to produce PHP errors when some error
; happens within intl functions. The value is the level of the error produced.
; Default is 0, which does not produce any errors.
;intl.error_level = E_WARNING
;intl.use_exceptions = 0
[sqlite3]
; Directory pointing to SQLite3 extensions
; http://php.net/sqlite3.extension-dir
;sqlite3.extension_dir =
; SQLite defensive mode flag (only available from SQLite 3.26+)
; When the defensive flag is enabled, language features that allow ordinary
; SQL to deliberately corrupt the database file are disabled. This forbids
; writing directly to the schema, shadow tables (eg. FTS data tables), or
; the sqlite_dbpage virtual table.
; https://www.sqlite.org/c3ref/c_dbconfig_defensive.html
; (for older SQLite versions, this flag has no use)
;sqlite3.defensive = 1
[Pcre]
; PCRE library backtracking limit.
; http://php.net/pcre.backtrack-limit
;pcre.backtrack_limit=100000
; PCRE library recursion limit.
; Please note that if you set this value to a high number you may consume all
; the available process stack and eventually crash PHP (due to reaching the
; stack size limit imposed by the Operating System).
; http://php.net/pcre.recursion-limit
;pcre.recursion_limit=100000
; Enables or disables JIT compilation of patterns. This requires the PCRE
; library to be compiled with JIT support.
;pcre.jit=1
[Pdo]
; Whether to pool ODBC connections. Can be one of "strict", "relaxed" or "off"
; http://php.net/pdo-odbc.connection-pooling
;pdo_odbc.connection_pooling=strict
;pdo_odbc.db2_instance_name
[Pdo_mysql]
; Default socket name for local MySQL connects. If empty, uses the built-in
; MySQL defaults.
pdo_mysql.default_socket=
[Phar]
; http://php.net/phar.readonly
;phar.readonly = On
; http://php.net/phar.require-hash
;phar.require_hash = On
;phar.cache_list =
[mail function]
; For Win32 only.
; http://php.net/smtp
SMTP = localhost
; http://php.net/smtp-port
smtp_port = 25
; For Win32 only.
; http://php.net/sendmail-from
;sendmail_from = me@example.com
; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
; http://php.net/sendmail-path
;sendmail_path =
; Force the addition of the specified parameters to be passed as extra parameters
; to the sendmail binary. These parameters will always replace the value of
; the 5th parameter to mail().
;mail.force_extra_parameters =
; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
mail.add_x_header = Off
; The path to a log file that will log all mail() calls. Log entries include
; the full path of the script, line number, To address and headers.
;mail.log =
; Log mail to syslog (Event Log on Windows).
;mail.log = syslog
[ODBC]
; http://php.net/odbc.default-db
;odbc.default_db = Not yet implemented
; http://php.net/odbc.default-user
;odbc.default_user = Not yet implemented
; http://php.net/odbc.default-pw
;odbc.default_pw = Not yet implemented
; Controls the ODBC cursor model.
; Default: SQL_CURSOR_STATIC (default).
;odbc.default_cursortype
; Allow or prevent persistent links.
; http://php.net/odbc.allow-persistent
odbc.allow_persistent = On
; Check that a connection is still valid before reuse.
; http://php.net/odbc.check-persistent
odbc.check_persistent = On
; Maximum number of persistent links. -1 means no limit.
; http://php.net/odbc.max-persistent
odbc.max_persistent = -1
; Maximum number of links (persistent + non-persistent). -1 means no limit.
; http://php.net/odbc.max-links
odbc.max_links = -1
; Handling of LONG fields. Returns number of bytes to variables. 0 means
; passthru.
; http://php.net/odbc.defaultlrl
odbc.defaultlrl = 4096
; Handling of binary data. 0 means passthru, 1 return as is, 2 convert to char.
; See the documentation on odbc_binmode and odbc_longreadlen for an explanation
; of odbc.defaultlrl and odbc.defaultbinmode
; http://php.net/odbc.defaultbinmode
odbc.defaultbinmode = 1
[Interbase]
; Allow or prevent persistent links.
ibase.allow_persistent = 1
; Maximum number of persistent links. -1 means no limit.
ibase.max_persistent = -1
; Maximum number of links (persistent + non-persistent). -1 means no limit.
ibase.max_links = -1
; Default database name for ibase_connect().
;ibase.default_db =
; Default username for ibase_connect().
;ibase.default_user =
; Default password for ibase_connect().
;ibase.default_password =
; Default charset for ibase_connect().
;ibase.default_charset =
; Default timestamp format.
ibase.timestampformat = "%Y-%m-%d %H:%M:%S"
; Default date format.
ibase.dateformat = "%Y-%m-%d"
; Default time format.
ibase.timeformat = "%H:%M:%S"
[MySQLi]
; Maximum number of persistent links. -1 means no limit.
; http://php.net/mysqli.max-persistent
mysqli.max_persistent = -1
; Allow accessing, from PHP's perspective, local files with LOAD DATA statements
; http://php.net/mysqli.allow_local_infile
;mysqli.allow_local_infile = On
; Allow or prevent persistent links.
; http://php.net/mysqli.allow-persistent
mysqli.allow_persistent = On
; Maximum number of links. -1 means no limit.
; http://php.net/mysqli.max-links
mysqli.max_links = -1
; Default port number for mysqli_connect(). If unset, mysqli_connect() will use
; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
; compile-time value defined MYSQL_PORT (in that order). Win32 will only look
; at MYSQL_PORT.
; http://php.net/mysqli.default-port
mysqli.default_port = 3306
; Default socket name for local MySQL connects. If empty, uses the built-in
; MySQL defaults.
; http://php.net/mysqli.default-socket
mysqli.default_socket =
; Default host for mysql_connect() (doesn't apply in safe mode).
; http://php.net/mysqli.default-host
mysqli.default_host =
; Default user for mysql_connect() (doesn't apply in safe mode).
; http://php.net/mysqli.default-user
mysqli.default_user =
; Default password for mysqli_connect() (doesn't apply in safe mode).
; Note that this is generally a *bad* idea to store passwords in this file.
; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw")
; and reveal this password! And of course, any users with read access to this
; file will be able to reveal the password as well.
; http://php.net/mysqli.default-pw
mysqli.default_pw =
; Allow or prevent reconnect
mysqli.reconnect = Off
[mysqlnd]
; Enable / Disable collection of general statistics by mysqlnd which can be
; used to tune and monitor MySQL operations.
mysqlnd.collect_statistics = On
; Enable / Disable collection of memory usage statistics by mysqlnd which can be
; used to tune and monitor MySQL operations.
mysqlnd.collect_memory_statistics = Off
; Records communication from all extensions using mysqlnd to the specified log
; file.
; http://php.net/mysqlnd.debug
;mysqlnd.debug =
; Defines which queries will be logged.
;mysqlnd.log_mask = 0
; Default size of the mysqlnd memory pool, which is used by result sets.
;mysqlnd.mempool_default_size = 16000
; Size of a pre-allocated buffer used when sending commands to MySQL in bytes.
;mysqlnd.net_cmd_buffer_size = 2048
; Size of a pre-allocated buffer used for reading data sent by the server in
; bytes.
;mysqlnd.net_read_buffer_size = 32768
; Timeout for network requests in seconds.
;mysqlnd.net_read_timeout = 31536000
; SHA-256 Authentication Plugin related. File with the MySQL server public RSA
; key.
;mysqlnd.sha256_server_public_key =
[OCI8]
; Connection: Enables privileged connections using external
; credentials (OCI_SYSOPER, OCI_SYSDBA)
; http://php.net/oci8.privileged-connect
;oci8.privileged_connect = Off
; Connection: The maximum number of persistent OCI8 connections per
; process. Using -1 means no limit.
; http://php.net/oci8.max-persistent
;oci8.max_persistent = -1
; Connection: The maximum number of seconds a process is allowed to
; maintain an idle persistent connection. Using -1 means idle
; persistent connections will be maintained forever.
; http://php.net/oci8.persistent-timeout
;oci8.persistent_timeout = -1
; Connection: The number of seconds that must pass before issuing a
; ping during oci_pconnect() to check the connection validity. When
; set to 0, each oci_pconnect() will cause a ping. Using -1 disables
; pings completely.
; http://php.net/oci8.ping-interval
;oci8.ping_interval = 60
; Connection: Set this to a user chosen connection class to be used
; for all pooled server requests with Oracle 11g Database Resident
; Connection Pooling (DRCP). To use DRCP, this value should be set to
; the same string for all web servers running the same application,
; the database pool must be configured, and the connection string must
; specify to use a pooled server.
;oci8.connection_class =
; High Availability: Using On lets PHP receive Fast Application
; Notification (FAN) events generated when a database node fails. The
; database must also be configured to post FAN events.
;oci8.events = Off
; Tuning: This option enables statement caching, and specifies how
; many statements to cache. Using 0 disables statement caching.
; http://php.net/oci8.statement-cache-size
;oci8.statement_cache_size = 20
; Tuning: Enables statement prefetching and sets the default number of
; rows that will be fetched automatically after statement execution.
; http://php.net/oci8.default-prefetch
;oci8.default_prefetch = 100
; Compatibility. Using On means oci_close() will not close
; oci_connect() and oci_new_connect() connections.
; http://php.net/oci8.old-oci-close-semantics
;oci8.old_oci_close_semantics = Off
[PostgreSQL]
; Allow or prevent persistent links.
; http://php.net/pgsql.allow-persistent
pgsql.allow_persistent = On
; Detect broken persistent links always with pg_pconnect().
; Auto reset feature requires a little overheads.
; http://php.net/pgsql.auto-reset-persistent
pgsql.auto_reset_persistent = Off
; Maximum number of persistent links. -1 means no limit.
; http://php.net/pgsql.max-persistent
pgsql.max_persistent = -1
; Maximum number of links (persistent+non persistent). -1 means no limit.
; http://php.net/pgsql.max-links
pgsql.max_links = -1
; Ignore PostgreSQL backends Notice message or not.
; Notice message logging require a little overheads.
; http://php.net/pgsql.ignore-notice
pgsql.ignore_notice = 0
; Log PostgreSQL backends Notice message or not.
; Unless pgsql.ignore_notice=0, module cannot log notice message.
; http://php.net/pgsql.log-notice
pgsql.log_notice = 0
[bcmath]
; Number of decimal digits for all bcmath functions.
; http://php.net/bcmath.scale
bcmath.scale = 0
[browscap]
; http://php.net/browscap
;browscap = extra/browscap.ini
[Session]
; Handler used to store/retrieve data.
; http://php.net/session.save-handler
session.save_handler = files
; Argument passed to save_handler. In the case of files, this is the path
; where data files are stored. Note: Windows users have to change this
; variable in order to use PHP's session functions.
;
; The path can be defined as:
;
; session.save_path = "N;/path"
;
; where N is an integer. Instead of storing all the session files in
; /path, what this will do is use subdirectories N-levels deep, and
; store the session data in those directories. This is useful if
; your OS has problems with many files in one directory, and is
; a more efficient layout for servers that handle many sessions.
;
; NOTE 1: PHP will not create this directory structure automatically.
; You can use the script in the ext/session dir for that purpose.
; NOTE 2: See the section on garbage collection below if you choose to
; use subdirectories for session storage
;
; The file storage module creates files using mode 600 by default.
; You can change that by using
;
; session.save_path = "N;MODE;/path"
;
; where MODE is the octal representation of the mode. Note that this
; does not overwrite the process's umask.
; http://php.net/session.save-path
;session.save_path = "/var/lib/php/sessions"
; Whether to use strict session mode.
; Strict session mode does not accept an uninitialized session ID, and
; regenerates the session ID if the browser sends an uninitialized session ID.
; Strict mode protects applications from session fixation via a session adoption
; vulnerability. It is disabled by default for maximum compatibility, but
; enabling it is encouraged.
; https://wiki.php.net/rfc/strict_sessions
session.use_strict_mode = 0
; Whether to use cookies.
; http://php.net/session.use-cookies
session.use_cookies = 1
; http://php.net/session.cookie-secure
;session.cookie_secure =
; This option forces PHP to fetch and use a cookie for storing and maintaining
; the session id. We encourage this operation as it's very helpful in combating
; session hijacking when not specifying and managing your own session id. It is
; not the be-all and end-all of session hijacking defense, but it's a good start.
; http://php.net/session.use-only-cookies
session.use_only_cookies = 1
; Name of the session (used as cookie name).
; http://php.net/session.name
session.name = PHPSESSID
; Initialize session on request startup.
; http://php.net/session.auto-start
session.auto_start = 0
; Lifetime in seconds of cookie or, if 0, until browser is restarted.
; http://php.net/session.cookie-lifetime
session.cookie_lifetime = 0
; The path for which the cookie is valid.
; http://php.net/session.cookie-path
session.cookie_path = /
; The domain for which the cookie is valid.
; http://php.net/session.cookie-domain
session.cookie_domain =
; Whether or not to add the httpOnly flag to the cookie, which makes it
; inaccessible to browser scripting languages such as JavaScript.
; http://php.net/session.cookie-httponly
session.cookie_httponly =
; Add SameSite attribute to cookie to help mitigate Cross-Site Request Forgery (CSRF/XSRF)
; Current valid values are "Lax" or "Strict"
; https://tools.ietf.org/html/draft-west-first-party-cookies-07
session.cookie_samesite =
; Handler used to serialize data. php is the standard serializer of PHP.
; http://php.net/session.serialize-handler
session.serialize_handler = php
; Defines the probability that the 'garbage collection' process is started on every
; session initialization. The probability is calculated by using gc_probability/gc_divisor,
; e.g. 1/100 means there is a 1% chance that the GC process starts on each request.
; Default Value: 1
; Development Value: 1
; Production Value: 1
; http://php.net/session.gc-probability
session.gc_probability = 0
; Defines the probability that the 'garbage collection' process is started on every
; session initialization. The probability is calculated by using gc_probability/gc_divisor,
; e.g. 1/100 means there is a 1% chance that the GC process starts on each request.
; For high volume production servers, using a value of 1000 is a more efficient approach.
; Default Value: 100
; Development Value: 1000
; Production Value: 1000
; http://php.net/session.gc-divisor
session.gc_divisor = 1000
; After this number of seconds, stored data will be seen as 'garbage' and
; cleaned up by the garbage collection process.
; http://php.net/session.gc-maxlifetime
session.gc_maxlifetime = 1440
; NOTE: If you are using the subdirectory option for storing session files
; (see session.save_path above), then garbage collection does *not*
; happen automatically. You will need to do your own garbage
; collection through a shell script, cron entry, or some other method.
; For example, the following script would is the equivalent of
; setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
; find /path/to/sessions -cmin +24 -type f | xargs rm
; Check HTTP Referer to invalidate externally stored URLs containing ids.
; HTTP_REFERER has to contain this substring for the session to be
; considered as valid.
; http://php.net/session.referer-check
session.referer_check =
; Set to {nocache,private,public,} to determine HTTP caching aspects
; or leave this empty to avoid sending anti-caching headers.
; http://php.net/session.cache-limiter
session.cache_limiter = nocache
; Document expires after n minutes.
; http://php.net/session.cache-expire
session.cache_expire = 180
; trans sid support is disabled by default.
; Use of trans sid may risk your users' security.
; Use this option with caution.
; - User may send URL contains active session ID
; to other person via. email/irc/etc.
; - URL that contains active session ID may be stored
; in publicly accessible computer.
; - User may access your site with the same session ID
; always using URL stored in browser's history or bookmarks.
; http://php.net/session.use-trans-sid
session.use_trans_sid = 0
; Set session ID character length. This value could be between 22 to 256.
; Shorter length than default is supported only for compatibility reason.
; Users should use 32 or more chars.
; http://php.net/session.sid-length
; Default Value: 32
; Development Value: 26
; Production Value: 26
session.sid_length = 26
; The URL rewriter will look for URLs in a defined set of HTML tags.
; <form> is special; if you include them here, the rewriter will
; add a hidden <input> field with the info which is otherwise appended
; to URLs. <form> tag's action attribute URL will not be modified
; unless it is specified.
; Note that all valid entries require a "=", even if no value follows.
; Default Value: "a=href,area=href,frame=src,form="
; Development Value: "a=href,area=href,frame=src,form="
; Production Value: "a=href,area=href,frame=src,form="
; http://php.net/url-rewriter.tags
session.trans_sid_tags = "a=href,area=href,frame=src,form="
; URL rewriter does not rewrite absolute URLs by default.
; To enable rewrites for absolute paths, target hosts must be specified
; at RUNTIME. i.e. use ini_set()
; <form> tags is special. PHP will check action attribute's URL regardless
; of session.trans_sid_tags setting.
; If no host is defined, HTTP_HOST will be used for allowed host.
; Example value: php.net,www.php.net,wiki.php.net
; Use "," for multiple hosts. No spaces are allowed.
; Default Value: ""
; Development Value: ""
; Production Value: ""
;session.trans_sid_hosts=""
; Define how many bits are stored in each character when converting
; the binary hash data to something readable.
; Possible values:
; 4 (4 bits: 0-9, a-f)
; 5 (5 bits: 0-9, a-v)
; 6 (6 bits: 0-9, a-z, A-Z, "-", ",")
; Default Value: 4
; Development Value: 5
; Production Value: 5
; http://php.net/session.hash-bits-per-character
session.sid_bits_per_character = 5
; Enable upload progress tracking in $_SESSION
; Default Value: On
; Development Value: On
; Production Value: On
; http://php.net/session.upload-progress.enabled
;session.upload_progress.enabled = On
; Cleanup the progress information as soon as all POST data has been read
; (i.e. upload completed).
; Default Value: On
; Development Value: On
; Production Value: On
; http://php.net/session.upload-progress.cleanup
;session.upload_progress.cleanup = On
; A prefix used for the upload progress key in $_SESSION
; Default Value: "upload_progress_"
; Development Value: "upload_progress_"
; Production Value: "upload_progress_"
; http://php.net/session.upload-progress.prefix
;session.upload_progress.prefix = "upload_progress_"
; The index name (concatenated with the prefix) in $_SESSION
; containing the upload progress information
; Default Value: "PHP_SESSION_UPLOAD_PROGRESS"
; Development Value: "PHP_SESSION_UPLOAD_PROGRESS"
; Production Value: "PHP_SESSION_UPLOAD_PROGRESS"
; http://php.net/session.upload-progress.name
;session.upload_progress.name = "PHP_SESSION_UPLOAD_PROGRESS"
; How frequently the upload progress should be updated.
; Given either in percentages (per-file), or in bytes
; Default Value: "1%"
; Development Value: "1%"
; Production Value: "1%"
; http://php.net/session.upload-progress.freq
;session.upload_progress.freq = "1%"
; The minimum delay between updates, in seconds
; Default Value: 1
; Development Value: 1
; Production Value: 1
; http://php.net/session.upload-progress.min-freq
;session.upload_progress.min_freq = "1"
; Only write session data when session data is changed. Enabled by default.
; http://php.net/session.lazy-write
;session.lazy_write = On
[Assertion]
; Switch whether to compile assertions at all (to have no overhead at run-time)
; -1: Do not compile at all
; 0: Jump over assertion at run-time
; 1: Execute assertions
; Changing from or to a negative value is only possible in php.ini! (For turning assertions on and off at run-time, see assert.active, when zend.assertions = 1)
; Default Value: 1
; Development Value: 1
; Production Value: -1
; http://php.net/zend.assertions
zend.assertions = -1
; Assert(expr); active by default.
; http://php.net/assert.active
;assert.active = On
; Throw an AssertionError on failed assertions
; http://php.net/assert.exception
;assert.exception = On
; Issue a PHP warning for each failed assertion. (Overridden by assert.exception if active)
; http://php.net/assert.warning
;assert.warning = On
; Don't bail out by default.
; http://php.net/assert.bail
;assert.bail = Off
; User-function to be called if an assertion fails.
; http://php.net/assert.callback
;assert.callback = 0
; Eval the expression with current error_reporting(). Set to true if you want
; error_reporting(0) around the eval().
; http://php.net/assert.quiet-eval
;assert.quiet_eval = 0
[COM]
; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs
; http://php.net/com.typelib-file
;com.typelib_file =
; allow Distributed-COM calls
; http://php.net/com.allow-dcom
;com.allow_dcom = true
; autoregister constants of a component's typlib on com_load()
; http://php.net/com.autoregister-typelib
;com.autoregister_typelib = true
; register constants casesensitive
; http://php.net/com.autoregister-casesensitive
;com.autoregister_casesensitive = false
; show warnings on duplicate constant registrations
; http://php.net/com.autoregister-verbose
;com.autoregister_verbose = true
; The default character set code-page to use when passing strings to and from COM objects.
; Default: system ANSI code page
;com.code_page=
[mbstring]
; language for internal character representation.
; This affects mb_send_mail() and mbstring.detect_order.
; http://php.net/mbstring.language
;mbstring.language = Japanese
; Use of this INI entry is deprecated, use global internal_encoding instead.
; internal/script encoding.
; Some encoding cannot work as internal encoding. (e.g. SJIS, BIG5, ISO-2022-*)
; If empty, default_charset or internal_encoding or iconv.internal_encoding is used.
; The precedence is: default_charset < internal_encoding < iconv.internal_encoding
;mbstring.internal_encoding =
; Use of this INI entry is deprecated, use global input_encoding instead.
; http input encoding.
; mbstring.encoding_translation = On is needed to use this setting.
; If empty, default_charset or input_encoding or mbstring.input is used.
; The precedence is: default_charset < input_encoding < mbsting.http_input
; http://php.net/mbstring.http-input
;mbstring.http_input =
; Use of this INI entry is deprecated, use global output_encoding instead.
; http output encoding.
; mb_output_handler must be registered as output buffer to function.
; If empty, default_charset or output_encoding or mbstring.http_output is used.
; The precedence is: default_charset < output_encoding < mbstring.http_output
; To use an output encoding conversion, mbstring's output handler must be set
; otherwise output encoding conversion cannot be performed.
; http://php.net/mbstring.http-output
;mbstring.http_output =
; enable automatic encoding translation according to
; mbstring.internal_encoding setting. Input chars are
; converted to internal encoding by setting this to On.
; Note: Do _not_ use automatic encoding translation for
; portable libs/applications.
; http://php.net/mbstring.encoding-translation
;mbstring.encoding_translation = Off
; automatic encoding detection order.
; "auto" detect order is changed according to mbstring.language
; http://php.net/mbstring.detect-order
;mbstring.detect_order = auto
; substitute_character used when character cannot be converted
; one from another
; http://php.net/mbstring.substitute-character
;mbstring.substitute_character = none
; overload(replace) single byte functions by mbstring functions.
; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(),
; etc. Possible values are 0,1,2,4 or combination of them.
; For example, 7 for overload everything.
; 0: No overload
; 1: Overload mail() function
; 2: Overload str*() functions
; 4: Overload ereg*() functions
; http://php.net/mbstring.func-overload
;mbstring.func_overload = 0
; enable strict encoding detection.
; Default: Off
;mbstring.strict_detection = On
; This directive specifies the regex pattern of content types for which mb_output_handler()
; is activated.
; Default: mbstring.http_output_conv_mimetype=^(text/|application/xhtml\+xml)
;mbstring.http_output_conv_mimetype=
; This directive specifies maximum stack depth for mbstring regular expressions. It is similar
; to the pcre.recursion_limit for PCRE.
; Default: 100000
;mbstring.regex_stack_limit=100000
[gd]
; Tell the jpeg decode to ignore warnings and try to create
; a gd image. The warning will then be displayed as notices
; disabled by default
; http://php.net/gd.jpeg-ignore-warning
;gd.jpeg_ignore_warning = 1
[exif]
; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS.
; With mbstring support this will automatically be converted into the encoding
; given by corresponding encode setting. When empty mbstring.internal_encoding
; is used. For the decode settings you can distinguish between motorola and
; intel byte order. A decode setting cannot be empty.
; http://php.net/exif.encode-unicode
;exif.encode_unicode = ISO-8859-15
; http://php.net/exif.decode-unicode-motorola
;exif.decode_unicode_motorola = UCS-2BE
; http://php.net/exif.decode-unicode-intel
;exif.decode_unicode_intel = UCS-2LE
; http://php.net/exif.encode-jis
;exif.encode_jis =
; http://php.net/exif.decode-jis-motorola
;exif.decode_jis_motorola = JIS
; http://php.net/exif.decode-jis-intel
;exif.decode_jis_intel = JIS
[Tidy]
; The path to a default tidy configuration file to use when using tidy
; http://php.net/tidy.default-config
;tidy.default_config = /usr/local/lib/php/default.tcfg
; Should tidy clean and repair output automatically?
; WARNING: Do not use this option if you are generating non-html content
; such as dynamic images
; http://php.net/tidy.clean-output
tidy.clean_output = Off
[soap]
; Enables or disables WSDL caching feature.
; http://php.net/soap.wsdl-cache-enabled
soap.wsdl_cache_enabled=1
; Sets the directory name where SOAP extension will put cache files.
; http://php.net/soap.wsdl-cache-dir
soap.wsdl_cache_dir="/tmp"
; (time to live) Sets the number of second while cached file will be used
; instead of original one.
; http://php.net/soap.wsdl-cache-ttl
soap.wsdl_cache_ttl=86400
; Sets the size of the cache limit. (Max. number of WSDL files to cache)
soap.wsdl_cache_limit = 5
[sysvshm]
; A default size of the shared memory segment
;sysvshm.init_mem = 10000
[ldap]
; Sets the maximum number of open links or -1 for unlimited.
ldap.max_links = -1
[dba]
;dba.default_handler=
[opcache]
; Determines if Zend OPCache is enabled
;opcache.enable=1
; Determines if Zend OPCache is enabled for the CLI version of PHP
;opcache.enable_cli=0
; The OPcache shared memory storage size.
;opcache.memory_consumption=128
; The amount of memory for interned strings in Mbytes.
;opcache.interned_strings_buffer=8
; The maximum number of keys (scripts) in the OPcache hash table.
; Only numbers between 200 and 1000000 are allowed.
;opcache.max_accelerated_files=10000
; The maximum percentage of "wasted" memory until a restart is scheduled.
;opcache.max_wasted_percentage=5
; When this directive is enabled, the OPcache appends the current working
; directory to the script key, thus eliminating possible collisions between
; files with the same name (basename). Disabling the directive improves
; performance, but may break existing applications.
;opcache.use_cwd=1
; When disabled, you must reset the OPcache manually or restart the
; webserver for changes to the filesystem to take effect.
;opcache.validate_timestamps=1
; How often (in seconds) to check file timestamps for changes to the shared
; memory storage allocation. ("1" means validate once per second, but only
; once per request. "0" means always validate)
;opcache.revalidate_freq=2
; Enables or disables file search in include_path optimization
;opcache.revalidate_path=0
; If disabled, all PHPDoc comments are dropped from the code to reduce the
; size of the optimized code.
;opcache.save_comments=1
; Allow file existence override (file_exists, etc.) performance feature.
;opcache.enable_file_override=0
; A bitmask, where each bit enables or disables the appropriate OPcache
; passes
;opcache.optimization_level=0x7FFFBFFF
;opcache.dups_fix=0
; The location of the OPcache blacklist file (wildcards allowed).
; Each OPcache blacklist file is a text file that holds the names of files
; that should not be accelerated. The file format is to add each filename
; to a new line. The filename may be a full path or just a file prefix
; (i.e., /var/www/x blacklists all the files and directories in /var/www
; that start with 'x'). Line starting with a ; are ignored (comments).
;opcache.blacklist_filename=
; Allows exclusion of large files from being cached. By default all files
; are cached.
;opcache.max_file_size=0
; Check the cache checksum each N requests.
; The default value of "0" means that the checks are disabled.
;opcache.consistency_checks=0
; How long to wait (in seconds) for a scheduled restart to begin if the cache
; is not being accessed.
;opcache.force_restart_timeout=180
; OPcache error_log file name. Empty string assumes "stderr".
;opcache.error_log=
; All OPcache errors go to the Web server log.
; By default, only fatal errors (level 0) or errors (level 1) are logged.
; You can also enable warnings (level 2), info messages (level 3) or
; debug messages (level 4).
;opcache.log_verbosity_level=1
; Preferred Shared Memory back-end. Leave empty and let the system decide.
;opcache.preferred_memory_model=
; Protect the shared memory from unexpected writing during script execution.
; Useful for internal debugging only.
;opcache.protect_memory=0
; Allows calling OPcache API functions only from PHP scripts which path is
; started from specified string. The default "" means no restriction
;opcache.restrict_api=
; Mapping base of shared memory segments (for Windows only). All the PHP
; processes have to map shared memory into the same address space. This
; directive allows to manually fix the "Unable to reattach to base address"
; errors.
;opcache.mmap_base=
; Enables and sets the second level cache directory.
; It should improve performance when SHM memory is full, at server restart or
; SHM reset. The default "" disables file based caching.
;opcache.file_cache=
; Enables or disables opcode caching in shared memory.
;opcache.file_cache_only=0
; Enables or disables checksum validation when script loaded from file cache.
;opcache.file_cache_consistency_checks=1
; Implies opcache.file_cache_only=1 for a certain process that failed to
; reattach to the shared memory (for Windows only). Explicitly enabled file
; cache is required.
;opcache.file_cache_fallback=1
; Enables or disables copying of PHP code (text segment) into HUGE PAGES.
; This should improve performance, but requires appropriate OS configuration.
;opcache.huge_code_pages=1
; Validate cached file permissions.
;opcache.validate_permission=0
; Prevent name collisions in chroot'ed environment.
;opcache.validate_root=0
; If specified, it produces opcode dumps for debugging different stages of
; optimizations.
;opcache.opt_debug_level=0
[curl]
; A default value for the CURLOPT_CAINFO option. This is required to be an
; absolute path.
;curl.cainfo =
[openssl]
; The location of a Certificate Authority (CA) file on the local filesystem
; to use when verifying the identity of SSL/TLS peers. Most users should
; not specify a value for this directive as PHP will attempt to use the
; OS-managed cert stores in its absence. If specified, this value may still
; be overridden on a per-stream basis via the "cafile" SSL stream context
; option.
;openssl.cafile=
; If openssl.cafile is not specified or if the CA file is not found, the
; directory pointed to by openssl.capath is searched for a suitable
; certificate. This value must be a correctly hashed certificate directory.
; Most users should not specify a value for this directive as PHP will
; attempt to use the OS-managed cert stores in its absence. If specified,
; this value may still be overridden on a per-stream basis via the "capath"
; SSL stream context option.
;openssl.capath=
; Local Variables:
; tab-width: 4
; End:

View File

@ -0,0 +1 @@
*.* -/dev/stdout

View File

@ -0,0 +1,45 @@
[supervisord]
nodaemon=true
[program:rsyslog]
command = /usr/sbin/rsyslogd -n
directory = /
user = root
autostart = true
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
[program:apache2]
environment=HOSTNAME="%(ENV_HOSTNAME)s"
command = apachectl -D "FOREGROUND" -k start
directory = /loginapp
user = root
autostart = true
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
[program:php-fpm]
environment=HOSTNAME="%(ENV_HOSTNAME)s"
command = /usr/sbin/php-fpm8.1 -F -R
autostart = true
autorestart = true
directory = /loginapp
user = root
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
[unix_http_server]
file=/var/run/supervisor.sock
[rpcinterface:supervisor]
supervisor.rpcinterface_factory=supervisor.rpcinterface:make_main_rpcinterface

View File

@ -0,0 +1,22 @@
[global]
daemonize=no
error_log=/dev/stderr
[www]
user = www-data
group = www-data
listen = /run/php/php8.1-fpm.sock
listen.allowed_clients = 127.0.0.1
listen.owner = www-data
listen.group = www-data
pm = dynamic
pm.max_children = 5
pm.start_servers = 2
pm.min_spare_servers = 1
pm.max_spare_servers = 3
catch_workers_output = yes

33
docker-compose.yml Normal file
View File

@ -0,0 +1,33 @@
version: "3.8"
services:
loginapp:
container_name: loginapp
build:
context: ./containers/loginapp
args:
- HTTP_PROXY=${HTTP_PROXY}
- HTTPS_PROXY=${HTTPS_PROXY}
- http_proxy=${http_proxy}
- https_proxy=${https_proxy}
user: ${FIXUID:-1000}:${FIXGID:-1000}
ports:
- 5000:80
volumes:
- .:/loginapp
- /etc/localtime:/etc/localtime:ro
- $HOME/.ssh:/root/.host-ssh:ro
tmpfs:
- /loginapp/var/logs:uid=${FIXUID:-1000},gid=${FIXGID:-1000}
- /loginapp/var/cache:uid=${FIXUID:-1000},gid=${FIXGID:-1000}
- /loginapp/public/build:uid=${FIXUID:-1000},gid=${FIXGID:-1000}
- /tmp
extra_hosts:
- "loginapp.mse.local:127.0.0.1"
- "host.docker.internal:host-gateway"
environment:
- HTTP_PROXY=${HTTP_PROXY}
- HTTPS_PROXY=${HTTPS_PROXY}
- http_proxy=${http_proxy}
- https_proxy=${https_proxy}
- TZ=Europe/Paris

17
public/app_docker.php Executable file
View File

@ -0,0 +1,17 @@
<?php
use Symfony\Component\ErrorHandler\Debug;
use Symfony\Component\HttpFoundation\Request;
require __DIR__.'/../vendor/autoload.php';
Debug::enable();
$kernel = new AppKernel('dev', true);
if (PHP_VERSION_ID < 70000) {
$kernel->loadClassCache();
}
Request::setTrustedProxies(['192.168.0.0/24'], Request::HEADER_X_FORWARDED_ALL);
$request = Request::createFromGlobals();
$response = $kernel->handle($request);
$response->send();
$kernel->terminate($request, $response);

9
public/index.php Normal file
View File

@ -0,0 +1,9 @@
<?php
use App\Kernel;
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
return function (array $context) {
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
};

0
src/Controller/.gitignore vendored Normal file
View File

View File

@ -0,0 +1,19 @@
<?php
namespace App\Controller;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
class MainController extends AbstractController
{
/**
* @Route("/loginAppSaml", name="login_app_saml")
*/
public function loginAppSaml(Request $request)
{
return new Response("saml");
}
}

11
src/Kernel.php Normal file
View File

@ -0,0 +1,11 @@
<?php
namespace App;
use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait;
use Symfony\Component\HttpKernel\Kernel as BaseKernel;
class Kernel extends BaseKernel
{
use MicroKernelTrait;
}

3714
supervisord.log Normal file
View File

@ -0,0 +1,3714 @@
2022-04-07 10:00:03,341 INFO Set uid to user 0 succeeded
2022-04-07 10:00:03,343 INFO RPC interface 'supervisor' initialized
2022-04-07 10:00:03,343 CRIT Server 'unix_http_server' running without any HTTP authentication checking
2022-04-07 10:00:03,343 INFO supervisord started with pid 30
2022-04-07 10:00:04,346 INFO spawned: 'apache2' with pid 32
2022-04-07 10:00:04,349 INFO spawned: 'php-fpm7.4' with pid 33
2022-04-07 10:00:04,351 INFO spawned: 'rsyslog' with pid 34
2022-04-07 10:00:05,382 INFO success: apache2 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:00:05,383 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:00:05,383 INFO success: rsyslog entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:00:05,383 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:00:06,386 INFO spawned: 'php-fpm7.4' with pid 106
2022-04-07 10:00:07,409 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:00:07,410 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:00:08,413 INFO spawned: 'php-fpm7.4' with pid 107
2022-04-07 10:00:09,446 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:00:09,446 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:00:10,450 INFO spawned: 'php-fpm7.4' with pid 108
2022-04-07 10:00:11,475 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:00:11,475 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:00:12,478 INFO spawned: 'php-fpm7.4' with pid 109
2022-04-07 10:00:13,501 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:00:13,501 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:00:14,504 INFO spawned: 'php-fpm7.4' with pid 110
2022-04-07 10:03:21,810 INFO Set uid to user 0 succeeded
2022-04-07 10:03:21,812 INFO RPC interface 'supervisor' initialized
2022-04-07 10:03:21,812 CRIT Server 'unix_http_server' running without any HTTP authentication checking
2022-04-07 10:03:21,812 INFO supervisord started with pid 12
2022-04-07 10:03:22,816 INFO spawned: 'apache2' with pid 14
2022-04-07 10:03:22,817 INFO spawned: 'php-fpm7.4' with pid 15
2022-04-07 10:03:22,818 INFO spawned: 'rsyslog' with pid 16
2022-04-07 10:03:23,839 INFO success: apache2 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:03:23,839 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:03:23,839 INFO success: rsyslog entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:03:23,839 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:03:24,843 INFO spawned: 'php-fpm7.4' with pid 88
2022-04-07 10:03:25,866 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:03:25,867 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:03:26,870 INFO spawned: 'php-fpm7.4' with pid 89
2022-04-07 10:03:27,894 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:03:27,894 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:03:28,898 INFO spawned: 'php-fpm7.4' with pid 90
2022-04-07 10:03:29,922 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:03:29,922 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:03:30,926 INFO spawned: 'php-fpm7.4' with pid 91
2022-04-07 10:03:31,949 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:03:31,950 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:03:32,953 INFO spawned: 'php-fpm7.4' with pid 92
2022-04-07 10:03:33,976 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:03:33,977 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:03:34,980 INFO spawned: 'php-fpm7.4' with pid 93
2022-04-07 10:03:36,003 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:03:36,003 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:03:37,007 INFO spawned: 'php-fpm7.4' with pid 94
2022-04-07 10:03:38,030 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:03:38,030 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:03:39,034 INFO spawned: 'php-fpm7.4' with pid 95
2022-04-07 10:03:40,056 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:03:40,057 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:03:41,060 INFO spawned: 'php-fpm7.4' with pid 96
2022-04-07 10:03:42,083 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:03:42,083 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:03:43,088 INFO spawned: 'php-fpm7.4' with pid 97
2022-04-07 10:03:44,119 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:03:44,120 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:03:45,123 INFO spawned: 'php-fpm7.4' with pid 98
2022-04-07 10:03:46,146 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:03:46,147 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:03:47,150 INFO spawned: 'php-fpm7.4' with pid 99
2022-04-07 10:03:48,173 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:03:48,174 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:03:49,176 INFO spawned: 'php-fpm7.4' with pid 100
2022-04-07 10:03:50,209 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:03:50,209 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:03:51,219 INFO spawned: 'php-fpm7.4' with pid 101
2022-04-07 10:03:52,249 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:03:52,250 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:03:53,253 INFO spawned: 'php-fpm7.4' with pid 102
2022-04-07 10:03:54,286 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:03:54,286 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:03:55,289 INFO spawned: 'php-fpm7.4' with pid 103
2022-04-07 10:03:56,319 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:03:56,319 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:03:57,330 INFO spawned: 'php-fpm7.4' with pid 104
2022-04-07 10:03:58,354 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:03:58,354 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:03:59,358 INFO spawned: 'php-fpm7.4' with pid 105
2022-04-07 10:04:00,392 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:04:00,392 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:04:01,395 INFO spawned: 'php-fpm7.4' with pid 106
2022-04-07 10:04:02,428 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:04:02,428 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:04:03,431 INFO spawned: 'php-fpm7.4' with pid 107
2022-04-07 10:04:04,453 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:04:04,454 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:04:05,457 INFO spawned: 'php-fpm7.4' with pid 108
2022-04-07 10:04:06,479 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:04:06,479 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:04:07,483 INFO spawned: 'php-fpm7.4' with pid 109
2022-04-07 10:04:08,506 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:04:08,506 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:04:09,509 INFO spawned: 'php-fpm7.4' with pid 110
2022-04-07 10:04:10,533 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:04:10,533 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:04:11,544 INFO spawned: 'php-fpm7.4' with pid 111
2022-04-07 10:04:12,566 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:04:12,567 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:04:13,570 INFO spawned: 'php-fpm7.4' with pid 112
2022-04-07 10:04:14,593 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:04:14,594 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:04:15,597 INFO spawned: 'php-fpm7.4' with pid 113
2022-04-07 10:04:16,619 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:04:16,620 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:04:17,622 INFO spawned: 'php-fpm7.4' with pid 121
2022-04-07 10:04:18,656 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:04:18,657 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:04:19,660 INFO spawned: 'php-fpm7.4' with pid 122
2022-04-07 10:04:20,681 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:04:20,682 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:04:21,685 INFO spawned: 'php-fpm7.4' with pid 124
2022-04-07 10:04:22,707 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:04:22,707 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:04:23,711 INFO spawned: 'php-fpm7.4' with pid 125
2022-04-07 10:04:24,735 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:04:24,735 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:04:25,739 INFO spawned: 'php-fpm7.4' with pid 126
2022-04-07 10:04:26,762 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:04:26,763 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:04:27,766 INFO spawned: 'php-fpm7.4' with pid 127
2022-04-07 10:04:28,788 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:04:28,788 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:04:29,792 INFO spawned: 'php-fpm7.4' with pid 128
2022-04-07 10:04:30,814 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:04:30,814 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:04:31,818 INFO spawned: 'php-fpm7.4' with pid 130
2022-04-07 10:04:32,839 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:04:32,840 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:04:33,843 INFO spawned: 'php-fpm7.4' with pid 131
2022-04-07 10:04:34,867 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:04:34,868 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:04:35,871 INFO spawned: 'php-fpm7.4' with pid 132
2022-04-07 10:04:36,893 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:04:36,894 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:04:37,897 INFO spawned: 'php-fpm7.4' with pid 134
2022-04-07 10:04:38,922 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:04:38,923 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:04:39,926 INFO spawned: 'php-fpm7.4' with pid 135
2022-04-07 10:04:40,949 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:04:40,949 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:04:41,953 INFO spawned: 'php-fpm7.4' with pid 136
2022-04-07 10:04:42,978 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:04:42,978 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:04:43,982 INFO spawned: 'php-fpm7.4' with pid 137
2022-04-07 10:04:45,002 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:04:45,003 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:04:46,006 INFO spawned: 'php-fpm7.4' with pid 138
2022-04-07 10:04:47,029 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:04:47,030 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:04:48,033 INFO spawned: 'php-fpm7.4' with pid 140
2022-04-07 10:04:49,055 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:04:49,055 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:04:50,059 INFO spawned: 'php-fpm7.4' with pid 142
2022-04-07 10:04:51,080 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:04:51,081 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:04:52,084 INFO spawned: 'php-fpm7.4' with pid 143
2022-04-07 10:04:53,106 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:04:53,106 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:04:54,116 INFO spawned: 'php-fpm7.4' with pid 144
2022-04-07 10:04:55,142 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:04:55,143 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:04:56,146 INFO spawned: 'php-fpm7.4' with pid 145
2022-04-07 10:04:57,181 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:04:57,181 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:04:58,185 INFO spawned: 'php-fpm7.4' with pid 146
2022-04-07 10:04:59,207 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:04:59,207 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:05:00,211 INFO spawned: 'php-fpm7.4' with pid 147
2022-04-07 10:05:01,233 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:05:01,234 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:05:02,237 INFO spawned: 'php-fpm7.4' with pid 148
2022-04-07 10:05:03,260 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:05:03,260 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:05:04,263 INFO spawned: 'php-fpm7.4' with pid 149
2022-04-07 10:05:05,299 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:05:05,299 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:05:06,303 INFO spawned: 'php-fpm7.4' with pid 150
2022-04-07 10:05:07,323 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:05:07,323 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:05:08,327 INFO spawned: 'php-fpm7.4' with pid 151
2022-04-07 10:05:09,349 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:05:09,350 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:05:10,360 INFO spawned: 'php-fpm7.4' with pid 152
2022-04-07 10:05:11,383 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:05:11,383 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:05:12,387 INFO spawned: 'php-fpm7.4' with pid 153
2022-04-07 10:05:13,409 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:05:13,409 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:05:14,413 INFO spawned: 'php-fpm7.4' with pid 154
2022-04-07 10:05:15,434 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:05:15,435 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:05:16,442 INFO spawned: 'php-fpm7.4' with pid 155
2022-04-07 10:05:17,465 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:05:17,466 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:05:18,469 INFO spawned: 'php-fpm7.4' with pid 156
2022-04-07 10:05:19,491 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:05:19,492 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:05:20,495 INFO spawned: 'php-fpm7.4' with pid 157
2022-04-07 10:05:21,528 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:05:21,528 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:05:22,531 INFO spawned: 'php-fpm7.4' with pid 158
2022-04-07 10:05:23,554 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:05:23,555 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:05:24,558 INFO spawned: 'php-fpm7.4' with pid 159
2022-04-07 10:05:25,592 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:05:25,592 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:05:26,596 INFO spawned: 'php-fpm7.4' with pid 160
2022-04-07 10:05:27,628 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:05:27,628 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:05:28,632 INFO spawned: 'php-fpm7.4' with pid 161
2022-04-07 10:05:29,654 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:05:29,655 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:05:30,658 INFO spawned: 'php-fpm7.4' with pid 162
2022-04-07 10:05:31,692 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:05:31,692 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:05:32,696 INFO spawned: 'php-fpm7.4' with pid 163
2022-04-07 10:05:33,730 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:05:33,730 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:05:34,734 INFO spawned: 'php-fpm7.4' with pid 164
2022-04-07 10:05:35,767 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:05:35,767 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:05:36,770 INFO spawned: 'php-fpm7.4' with pid 165
2022-04-07 10:05:37,793 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:05:37,793 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:05:38,797 INFO spawned: 'php-fpm7.4' with pid 166
2022-04-07 10:05:39,821 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:05:39,821 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:05:40,825 INFO spawned: 'php-fpm7.4' with pid 167
2022-04-07 10:05:41,846 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:05:41,847 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:05:42,850 INFO spawned: 'php-fpm7.4' with pid 168
2022-04-07 10:05:43,873 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:05:43,873 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:05:44,876 INFO spawned: 'php-fpm7.4' with pid 169
2022-04-07 10:05:45,909 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:05:45,909 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:05:46,913 INFO spawned: 'php-fpm7.4' with pid 170
2022-04-07 10:05:47,936 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:05:47,936 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:05:48,940 INFO spawned: 'php-fpm7.4' with pid 178
2022-04-07 10:05:49,964 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:05:49,965 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:05:50,975 INFO spawned: 'php-fpm7.4' with pid 179
2022-04-07 10:05:51,996 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:05:51,997 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:05:53,000 INFO spawned: 'php-fpm7.4' with pid 180
2022-04-07 10:05:54,022 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:05:54,023 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:05:55,026 INFO spawned: 'php-fpm7.4' with pid 181
2022-04-07 10:05:56,050 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:05:56,050 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:05:57,054 INFO spawned: 'php-fpm7.4' with pid 182
2022-04-07 10:05:58,077 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:05:58,077 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:05:59,081 INFO spawned: 'php-fpm7.4' with pid 184
2022-04-07 10:06:00,102 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:06:00,102 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:06:01,106 INFO spawned: 'php-fpm7.4' with pid 185
2022-04-07 10:06:02,127 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:06:02,128 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:06:03,131 INFO spawned: 'php-fpm7.4' with pid 186
2022-04-07 10:06:04,152 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:06:04,152 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:06:05,156 INFO spawned: 'php-fpm7.4' with pid 187
2022-04-07 10:06:06,190 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:06:06,191 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:06:07,194 INFO spawned: 'php-fpm7.4' with pid 188
2022-04-07 10:06:08,218 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:06:08,219 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:06:09,222 INFO spawned: 'php-fpm7.4' with pid 189
2022-04-07 10:06:10,245 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:06:10,245 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:06:11,249 INFO spawned: 'php-fpm7.4' with pid 190
2022-04-07 10:06:12,272 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:06:12,272 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:06:13,275 INFO spawned: 'php-fpm7.4' with pid 191
2022-04-07 10:06:14,298 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:06:14,299 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:06:15,302 INFO spawned: 'php-fpm7.4' with pid 192
2022-04-07 10:06:16,324 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:06:16,325 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:06:17,329 INFO spawned: 'php-fpm7.4' with pid 193
2022-04-07 10:06:18,351 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:06:18,351 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:06:19,362 INFO spawned: 'php-fpm7.4' with pid 194
2022-04-07 10:06:20,383 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:06:20,384 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:06:21,387 INFO spawned: 'php-fpm7.4' with pid 195
2022-04-07 10:06:22,409 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:06:22,409 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:06:23,412 INFO spawned: 'php-fpm7.4' with pid 198
2022-04-07 10:06:24,440 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:06:24,440 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:06:25,444 INFO spawned: 'php-fpm7.4' with pid 199
2022-04-07 10:06:26,468 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:06:26,468 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:06:27,472 INFO spawned: 'php-fpm7.4' with pid 200
2022-04-07 10:06:28,494 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:06:28,494 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:06:29,497 INFO spawned: 'php-fpm7.4' with pid 201
2022-04-07 10:06:30,521 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:06:30,521 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:06:31,524 INFO spawned: 'php-fpm7.4' with pid 202
2022-04-07 10:06:32,557 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:06:32,557 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:06:33,560 INFO spawned: 'php-fpm7.4' with pid 203
2022-04-07 10:06:34,582 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:06:34,582 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:06:35,586 INFO spawned: 'php-fpm7.4' with pid 204
2022-04-07 10:06:36,608 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:06:36,609 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:06:37,612 INFO spawned: 'php-fpm7.4' with pid 205
2022-04-07 10:06:38,633 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:06:38,634 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:06:39,637 INFO spawned: 'php-fpm7.4' with pid 207
2022-04-07 10:06:40,658 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:06:40,659 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:06:41,662 INFO spawned: 'php-fpm7.4' with pid 208
2022-04-07 10:06:42,685 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:06:42,685 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:06:43,689 INFO spawned: 'php-fpm7.4' with pid 209
2022-04-07 10:06:44,722 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:06:44,723 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:06:45,726 INFO spawned: 'php-fpm7.4' with pid 210
2022-04-07 10:06:46,749 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:06:46,749 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:06:47,752 INFO spawned: 'php-fpm7.4' with pid 211
2022-04-07 10:06:48,777 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:06:48,777 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:06:49,781 INFO spawned: 'php-fpm7.4' with pid 212
2022-04-07 10:06:50,804 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:06:50,804 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:06:51,808 INFO spawned: 'php-fpm7.4' with pid 214
2022-04-07 10:06:52,831 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:06:52,831 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:06:53,835 INFO spawned: 'php-fpm7.4' with pid 215
2022-04-07 10:06:54,859 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:06:54,859 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:06:55,863 INFO spawned: 'php-fpm7.4' with pid 216
2022-04-07 10:06:56,886 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:06:56,887 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:06:57,890 INFO spawned: 'php-fpm7.4' with pid 217
2022-04-07 10:06:58,912 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:06:58,912 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:06:59,916 INFO spawned: 'php-fpm7.4' with pid 218
2022-04-07 10:07:00,942 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:07:00,942 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:07:01,946 INFO spawned: 'php-fpm7.4' with pid 219
2022-04-07 10:07:02,967 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:07:02,967 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:07:03,971 INFO spawned: 'php-fpm7.4' with pid 220
2022-04-07 10:07:04,998 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:07:04,998 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:07:06,001 INFO spawned: 'php-fpm7.4' with pid 221
2022-04-07 10:07:07,023 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:07:07,024 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:07:08,027 INFO spawned: 'php-fpm7.4' with pid 230
2022-04-07 10:07:09,050 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:07:09,050 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:07:10,054 INFO spawned: 'php-fpm7.4' with pid 231
2022-04-07 10:07:11,077 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:07:11,078 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:07:12,081 INFO spawned: 'php-fpm7.4' with pid 232
2022-04-07 10:07:13,107 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:07:13,107 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:07:14,111 INFO spawned: 'php-fpm7.4' with pid 264
2022-04-07 10:07:15,145 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:07:15,145 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:07:16,149 INFO spawned: 'php-fpm7.4' with pid 265
2022-04-07 10:07:17,172 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:07:17,172 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:07:18,176 INFO spawned: 'php-fpm7.4' with pid 266
2022-04-07 10:07:19,197 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:07:19,198 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:07:20,201 INFO spawned: 'php-fpm7.4' with pid 275
2022-04-07 10:07:21,225 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:07:21,226 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:07:22,228 INFO spawned: 'php-fpm7.4' with pid 276
2022-04-07 10:07:23,258 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:07:23,258 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:07:24,268 INFO spawned: 'php-fpm7.4' with pid 277
2022-04-07 10:07:25,290 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:07:25,290 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:07:26,294 INFO spawned: 'php-fpm7.4' with pid 304
2022-04-07 10:07:27,328 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:07:27,328 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:07:28,332 INFO spawned: 'php-fpm7.4' with pid 305
2022-04-07 10:07:29,354 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:07:29,355 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:07:30,358 INFO spawned: 'php-fpm7.4' with pid 321
2022-04-07 10:07:31,381 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:07:31,382 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:07:32,386 INFO spawned: 'php-fpm7.4' with pid 322
2022-04-07 10:07:33,409 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:07:33,409 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:07:34,413 INFO spawned: 'php-fpm7.4' with pid 331
2022-04-07 10:07:35,437 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:07:35,437 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:07:36,441 INFO spawned: 'php-fpm7.4' with pid 332
2022-04-07 10:07:37,464 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:07:37,464 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:07:38,467 INFO spawned: 'php-fpm7.4' with pid 333
2022-04-07 10:07:39,501 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:07:39,502 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:07:40,505 INFO spawned: 'php-fpm7.4' with pid 334
2022-04-07 10:07:41,528 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:07:41,528 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:07:42,532 INFO spawned: 'php-fpm7.4' with pid 335
2022-04-07 10:07:43,554 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:07:43,555 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:07:44,558 INFO spawned: 'php-fpm7.4' with pid 336
2022-04-07 10:07:45,582 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:07:45,583 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:07:46,586 INFO spawned: 'php-fpm7.4' with pid 337
2022-04-07 10:07:47,610 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:07:47,611 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:07:48,614 INFO spawned: 'php-fpm7.4' with pid 338
2022-04-07 10:07:49,646 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:07:49,647 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:07:50,658 INFO spawned: 'php-fpm7.4' with pid 339
2022-04-07 10:07:51,690 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:07:51,691 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:07:52,694 INFO spawned: 'php-fpm7.4' with pid 340
2022-04-07 10:07:53,726 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:07:53,727 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:07:54,730 INFO spawned: 'php-fpm7.4' with pid 341
2022-04-07 10:07:55,763 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:07:55,763 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:07:56,766 INFO spawned: 'php-fpm7.4' with pid 342
2022-04-07 10:07:57,788 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:07:57,788 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:07:58,792 INFO spawned: 'php-fpm7.4' with pid 343
2022-04-07 10:07:59,815 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:07:59,815 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:08:00,818 INFO spawned: 'php-fpm7.4' with pid 344
2022-04-07 10:08:01,840 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:08:01,840 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:08:02,844 INFO spawned: 'php-fpm7.4' with pid 345
2022-04-07 10:08:03,866 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:08:03,866 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:08:04,870 INFO spawned: 'php-fpm7.4' with pid 346
2022-04-07 10:08:05,904 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:08:05,904 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:08:06,908 INFO spawned: 'php-fpm7.4' with pid 347
2022-04-07 10:08:07,930 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:08:07,930 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:08:08,934 INFO spawned: 'php-fpm7.4' with pid 348
2022-04-07 10:08:09,959 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:08:09,960 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:08:10,963 INFO spawned: 'php-fpm7.4' with pid 349
2022-04-07 10:08:11,987 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:08:11,987 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:08:12,991 INFO spawned: 'php-fpm7.4' with pid 350
2022-04-07 10:08:14,018 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:08:14,019 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:08:15,022 INFO spawned: 'php-fpm7.4' with pid 351
2022-04-07 10:08:16,051 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:08:16,051 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:08:17,055 INFO spawned: 'php-fpm7.4' with pid 352
2022-04-07 10:08:18,075 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:08:18,075 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:08:19,079 INFO spawned: 'php-fpm7.4' with pid 353
2022-04-07 10:08:20,100 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:08:20,101 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:08:21,104 INFO spawned: 'php-fpm7.4' with pid 356
2022-04-07 10:08:22,128 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:08:22,128 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:08:23,139 INFO spawned: 'php-fpm7.4' with pid 358
2022-04-07 10:08:24,165 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:08:24,165 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:08:25,168 INFO spawned: 'php-fpm7.4' with pid 359
2022-04-07 10:08:26,190 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:08:26,191 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:08:27,194 INFO spawned: 'php-fpm7.4' with pid 361
2022-04-07 10:08:28,218 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:08:28,218 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:08:29,222 INFO spawned: 'php-fpm7.4' with pid 362
2022-04-07 10:08:30,249 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:08:30,249 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:08:31,253 INFO spawned: 'php-fpm7.4' with pid 363
2022-04-07 10:08:32,277 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:08:32,277 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:08:33,281 INFO spawned: 'php-fpm7.4' with pid 364
2022-04-07 10:08:34,302 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:08:34,303 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:08:35,306 INFO spawned: 'php-fpm7.4' with pid 365
2022-04-07 10:08:36,327 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:08:36,328 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:08:37,331 INFO spawned: 'php-fpm7.4' with pid 366
2022-04-07 10:08:38,354 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:08:38,355 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:08:39,358 INFO spawned: 'php-fpm7.4' with pid 367
2022-04-07 10:08:40,380 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:08:40,380 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:08:41,384 INFO spawned: 'php-fpm7.4' with pid 368
2022-04-07 10:08:42,408 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:08:42,408 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:08:43,412 INFO spawned: 'php-fpm7.4' with pid 369
2022-04-07 10:08:44,434 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:08:44,434 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:08:45,438 INFO spawned: 'php-fpm7.4' with pid 371
2022-04-07 10:08:46,461 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:08:46,461 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:08:47,467 INFO spawned: 'php-fpm7.4' with pid 372
2022-04-07 10:08:47,486 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:08:48,492 INFO spawned: 'php-fpm7.4' with pid 373
2022-04-07 10:08:49,525 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:08:49,525 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:08:50,529 INFO spawned: 'php-fpm7.4' with pid 374
2022-04-07 10:08:51,561 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:08:51,561 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:08:52,564 INFO spawned: 'php-fpm7.4' with pid 375
2022-04-07 10:08:53,596 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:08:53,596 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:08:54,601 INFO spawned: 'php-fpm7.4' with pid 376
2022-04-07 10:08:55,624 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:08:55,625 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:08:56,630 INFO spawned: 'php-fpm7.4' with pid 377
2022-04-07 10:08:57,652 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:08:57,652 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:08:58,656 INFO spawned: 'php-fpm7.4' with pid 378
2022-04-07 10:08:59,678 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:08:59,679 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:09:00,682 INFO spawned: 'php-fpm7.4' with pid 379
2022-04-07 10:09:01,706 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:09:01,706 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:09:02,710 INFO spawned: 'php-fpm7.4' with pid 380
2022-04-07 10:09:03,732 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:09:03,732 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:09:04,736 INFO spawned: 'php-fpm7.4' with pid 381
2022-04-07 10:09:05,758 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:09:05,759 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:09:06,763 INFO spawned: 'php-fpm7.4' with pid 382
2022-04-07 10:09:07,784 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:09:07,784 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:09:08,788 INFO spawned: 'php-fpm7.4' with pid 383
2022-04-07 10:09:09,818 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:09:09,818 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:09:10,822 INFO spawned: 'php-fpm7.4' with pid 384
2022-04-07 10:09:11,858 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:09:11,858 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:09:12,861 INFO spawned: 'php-fpm7.4' with pid 385
2022-04-07 10:09:13,893 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:09:13,894 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:09:14,896 INFO spawned: 'php-fpm7.4' with pid 386
2022-04-07 10:09:15,932 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:09:15,932 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:09:16,936 INFO spawned: 'php-fpm7.4' with pid 387
2022-04-07 10:09:17,969 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:09:17,969 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:09:18,973 INFO spawned: 'php-fpm7.4' with pid 388
2022-04-07 10:09:20,004 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:09:20,005 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:09:21,008 INFO spawned: 'php-fpm7.4' with pid 389
2022-04-07 10:09:22,040 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:09:22,041 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:09:23,043 INFO spawned: 'php-fpm7.4' with pid 390
2022-04-07 10:09:24,073 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:09:24,074 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:09:25,078 INFO spawned: 'php-fpm7.4' with pid 391
2022-04-07 10:09:26,102 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:09:26,103 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:09:27,106 INFO spawned: 'php-fpm7.4' with pid 392
2022-04-07 10:09:28,129 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:09:28,130 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:09:29,133 INFO spawned: 'php-fpm7.4' with pid 393
2022-04-07 10:09:30,158 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:09:30,159 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:09:31,163 INFO spawned: 'php-fpm7.4' with pid 395
2022-04-07 10:09:32,186 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:09:32,187 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:09:33,190 INFO spawned: 'php-fpm7.4' with pid 396
2022-04-07 10:09:34,214 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:09:34,214 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:09:35,218 INFO spawned: 'php-fpm7.4' with pid 397
2022-04-07 10:09:36,240 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:09:36,241 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:09:37,243 INFO spawned: 'php-fpm7.4' with pid 398
2022-04-07 10:09:38,267 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:09:38,267 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:09:39,271 INFO spawned: 'php-fpm7.4' with pid 399
2022-04-07 10:09:40,293 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:09:40,294 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:09:41,297 INFO spawned: 'php-fpm7.4' with pid 400
2022-04-07 10:09:42,320 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:09:42,320 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:09:43,324 INFO spawned: 'php-fpm7.4' with pid 401
2022-04-07 10:09:44,346 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:09:44,346 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:09:45,352 INFO spawned: 'php-fpm7.4' with pid 403
2022-04-07 10:09:46,373 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:09:46,373 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:09:47,377 INFO spawned: 'php-fpm7.4' with pid 404
2022-04-07 10:09:48,399 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:09:48,399 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:09:49,403 INFO spawned: 'php-fpm7.4' with pid 406
2022-04-07 10:09:50,424 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:09:50,425 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:09:51,428 INFO spawned: 'php-fpm7.4' with pid 407
2022-04-07 10:09:52,450 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:09:52,451 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:09:53,454 INFO spawned: 'php-fpm7.4' with pid 408
2022-04-07 10:09:54,489 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:09:54,489 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:09:55,493 INFO spawned: 'php-fpm7.4' with pid 409
2022-04-07 10:09:56,515 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:09:56,515 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:09:57,519 INFO spawned: 'php-fpm7.4' with pid 410
2022-04-07 10:09:58,546 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:09:58,547 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:09:59,550 INFO spawned: 'php-fpm7.4' with pid 411
2022-04-07 10:10:00,576 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:10:00,576 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:10:01,580 INFO spawned: 'php-fpm7.4' with pid 412
2022-04-07 10:10:02,602 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:10:02,603 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:10:03,606 INFO spawned: 'php-fpm7.4' with pid 413
2022-04-07 10:10:04,645 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:10:04,645 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:10:05,649 INFO spawned: 'php-fpm7.4' with pid 418
2022-04-07 10:10:06,682 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:10:06,683 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:10:07,686 INFO spawned: 'php-fpm7.4' with pid 419
2022-04-07 10:10:08,708 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:10:08,708 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:10:09,718 INFO spawned: 'php-fpm7.4' with pid 420
2022-04-07 10:10:10,753 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:10:10,754 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:10:11,757 INFO spawned: 'php-fpm7.4' with pid 421
2022-04-07 10:10:12,780 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:10:12,780 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:10:13,784 INFO spawned: 'php-fpm7.4' with pid 426
2022-04-07 10:10:14,806 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:10:14,807 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:10:15,811 INFO spawned: 'php-fpm7.4' with pid 427
2022-04-07 10:10:16,830 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:10:16,830 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:10:17,834 INFO spawned: 'php-fpm7.4' with pid 428
2022-04-07 10:10:18,858 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:10:18,858 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:10:19,862 INFO spawned: 'php-fpm7.4' with pid 429
2022-04-07 10:10:20,884 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:10:20,884 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:10:21,895 INFO spawned: 'php-fpm7.4' with pid 430
2022-04-07 10:10:22,917 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:10:22,917 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:10:23,921 INFO spawned: 'php-fpm7.4' with pid 444
2022-04-07 10:10:24,943 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:10:24,943 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:10:25,947 INFO spawned: 'php-fpm7.4' with pid 445
2022-04-07 10:10:26,969 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:10:26,970 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:10:27,973 INFO spawned: 'php-fpm7.4' with pid 446
2022-04-07 10:10:29,000 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:10:29,000 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:10:30,011 INFO spawned: 'php-fpm7.4' with pid 454
2022-04-07 10:10:31,034 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:10:31,035 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:10:32,038 INFO spawned: 'php-fpm7.4' with pid 455
2022-04-07 10:10:33,072 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:10:33,072 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:10:34,076 INFO spawned: 'php-fpm7.4' with pid 456
2022-04-07 10:10:35,100 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:10:35,100 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:10:36,104 INFO spawned: 'php-fpm7.4' with pid 457
2022-04-07 10:10:37,128 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:10:37,128 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:10:38,132 INFO spawned: 'php-fpm7.4' with pid 458
2022-04-07 10:10:39,155 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:10:39,155 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:10:40,159 INFO spawned: 'php-fpm7.4' with pid 459
2022-04-07 10:10:41,182 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:10:41,182 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:10:42,185 INFO spawned: 'php-fpm7.4' with pid 460
2022-04-07 10:10:43,218 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:10:43,218 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:10:44,222 INFO spawned: 'php-fpm7.4' with pid 461
2022-04-07 10:10:45,254 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:10:45,255 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:10:46,258 INFO spawned: 'php-fpm7.4' with pid 462
2022-04-07 10:10:47,289 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:10:47,290 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:10:48,293 INFO spawned: 'php-fpm7.4' with pid 463
2022-04-07 10:10:49,314 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:10:49,314 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:10:50,318 INFO spawned: 'php-fpm7.4' with pid 464
2022-04-07 10:10:51,351 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:10:51,351 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:10:52,356 INFO spawned: 'php-fpm7.4' with pid 465
2022-04-07 10:10:53,388 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:10:53,388 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:10:54,392 INFO spawned: 'php-fpm7.4' with pid 466
2022-04-07 10:10:55,430 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:10:55,430 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:10:56,434 INFO spawned: 'php-fpm7.4' with pid 467
2022-04-07 10:10:57,468 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:10:57,468 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:10:58,471 INFO spawned: 'php-fpm7.4' with pid 468
2022-04-07 10:10:59,497 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:10:59,497 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:11:00,500 INFO spawned: 'php-fpm7.4' with pid 469
2022-04-07 10:11:01,522 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:11:01,522 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:11:02,526 INFO spawned: 'php-fpm7.4' with pid 470
2022-04-07 10:11:03,549 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:11:03,549 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:11:04,552 INFO spawned: 'php-fpm7.4' with pid 471
2022-04-07 10:11:05,575 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:11:05,575 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:11:06,578 INFO spawned: 'php-fpm7.4' with pid 472
2022-04-07 10:11:07,603 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:11:07,603 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:11:08,606 INFO spawned: 'php-fpm7.4' with pid 473
2022-04-07 10:11:09,638 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:11:09,639 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:11:10,643 INFO spawned: 'php-fpm7.4' with pid 474
2022-04-07 10:11:11,675 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:11:11,675 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:11:12,679 INFO spawned: 'php-fpm7.4' with pid 475
2022-04-07 10:11:13,714 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:11:13,715 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:11:14,718 INFO spawned: 'php-fpm7.4' with pid 476
2022-04-07 10:11:15,745 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:11:15,745 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:11:16,748 INFO spawned: 'php-fpm7.4' with pid 477
2022-04-07 10:11:17,780 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:11:17,780 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:11:18,784 INFO spawned: 'php-fpm7.4' with pid 479
2022-04-07 10:11:19,807 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:11:19,807 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:11:20,811 INFO spawned: 'php-fpm7.4' with pid 480
2022-04-07 10:11:21,846 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:11:21,846 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:11:22,857 INFO spawned: 'php-fpm7.4' with pid 481
2022-04-07 10:11:23,883 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:11:23,884 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:11:24,889 INFO spawned: 'php-fpm7.4' with pid 482
2022-04-07 10:11:25,912 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:11:25,912 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:11:26,916 INFO spawned: 'php-fpm7.4' with pid 483
2022-04-07 10:11:27,937 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:11:27,937 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:11:28,941 INFO spawned: 'php-fpm7.4' with pid 486
2022-04-07 10:11:29,968 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:11:29,968 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:11:30,972 INFO spawned: 'php-fpm7.4' with pid 487
2022-04-07 10:11:31,994 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:11:31,994 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:11:32,998 INFO spawned: 'php-fpm7.4' with pid 488
2022-04-07 10:11:34,019 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:11:34,019 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:11:35,023 INFO spawned: 'php-fpm7.4' with pid 489
2022-04-07 10:11:36,044 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:11:36,044 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:11:37,048 INFO spawned: 'php-fpm7.4' with pid 490
2022-04-07 10:11:38,070 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:11:38,071 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:11:39,074 INFO spawned: 'php-fpm7.4' with pid 493
2022-04-07 10:11:40,097 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:11:40,097 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:11:41,101 INFO spawned: 'php-fpm7.4' with pid 494
2022-04-07 10:11:42,123 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:11:42,123 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:11:43,127 INFO spawned: 'php-fpm7.4' with pid 495
2022-04-07 10:11:44,149 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:11:44,149 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:11:45,152 INFO spawned: 'php-fpm7.4' with pid 496
2022-04-07 10:11:46,176 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:11:46,176 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:11:47,180 INFO spawned: 'php-fpm7.4' with pid 497
2022-04-07 10:11:48,213 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:11:48,214 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:11:49,217 INFO spawned: 'php-fpm7.4' with pid 498
2022-04-07 10:11:50,250 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:11:50,250 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:11:51,254 INFO spawned: 'php-fpm7.4' with pid 499
2022-04-07 10:11:52,282 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:11:52,282 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:11:53,286 INFO spawned: 'php-fpm7.4' with pid 501
2022-04-07 10:11:54,311 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:11:54,311 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:11:55,315 INFO spawned: 'php-fpm7.4' with pid 502
2022-04-07 10:11:56,338 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:11:56,338 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:11:57,342 INFO spawned: 'php-fpm7.4' with pid 503
2022-04-07 10:11:58,364 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:11:58,364 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:11:59,375 INFO spawned: 'php-fpm7.4' with pid 506
2022-04-07 10:12:00,394 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:12:00,395 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:12:01,398 INFO spawned: 'php-fpm7.4' with pid 507
2022-04-07 10:12:02,422 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:12:02,422 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:12:03,426 INFO spawned: 'php-fpm7.4' with pid 508
2022-04-07 10:12:04,464 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:12:04,464 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:12:05,468 INFO spawned: 'php-fpm7.4' with pid 509
2022-04-07 10:12:06,501 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:12:06,502 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:12:07,505 INFO spawned: 'php-fpm7.4' with pid 510
2022-04-07 10:12:08,529 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:12:08,529 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:12:09,532 INFO spawned: 'php-fpm7.4' with pid 511
2022-04-07 10:12:10,556 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:12:10,556 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:12:11,560 INFO spawned: 'php-fpm7.4' with pid 512
2022-04-07 10:12:12,582 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:12:12,582 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:12:13,585 INFO spawned: 'php-fpm7.4' with pid 513
2022-04-07 10:12:14,607 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:12:14,608 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:12:15,611 INFO spawned: 'php-fpm7.4' with pid 514
2022-04-07 10:12:16,638 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:12:16,638 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:12:17,642 INFO spawned: 'php-fpm7.4' with pid 515
2022-04-07 10:12:18,663 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:12:18,663 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:12:19,668 INFO spawned: 'php-fpm7.4' with pid 516
2022-04-07 10:12:20,690 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:12:20,690 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:12:21,695 INFO spawned: 'php-fpm7.4' with pid 517
2022-04-07 10:12:22,718 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:12:22,718 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:12:23,722 INFO spawned: 'php-fpm7.4' with pid 518
2022-04-07 10:12:24,752 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:12:24,753 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:12:25,756 INFO spawned: 'php-fpm7.4' with pid 519
2022-04-07 10:12:26,786 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:12:26,787 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:12:27,790 INFO spawned: 'php-fpm7.4' with pid 520
2022-04-07 10:12:28,821 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:12:28,821 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:12:29,825 INFO spawned: 'php-fpm7.4' with pid 530
2022-04-07 10:12:30,847 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:12:30,847 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:12:31,858 INFO spawned: 'php-fpm7.4' with pid 531
2022-04-07 10:12:32,880 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:12:32,880 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:12:33,883 INFO spawned: 'php-fpm7.4' with pid 541
2022-04-07 10:12:34,915 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:12:34,915 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:12:35,919 INFO spawned: 'php-fpm7.4' with pid 542
2022-04-07 10:12:36,941 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:12:36,942 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:12:37,945 INFO spawned: 'php-fpm7.4' with pid 543
2022-04-07 10:12:38,980 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:12:38,980 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:12:39,984 INFO spawned: 'php-fpm7.4' with pid 544
2022-04-07 10:12:41,006 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:12:41,007 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:12:42,010 INFO spawned: 'php-fpm7.4' with pid 545
2022-04-07 10:12:43,036 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:12:43,036 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:12:44,040 INFO spawned: 'php-fpm7.4' with pid 546
2022-04-07 10:12:45,059 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:12:45,060 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:12:46,063 INFO spawned: 'php-fpm7.4' with pid 547
2022-04-07 10:12:47,089 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:12:47,090 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:12:48,093 INFO spawned: 'php-fpm7.4' with pid 548
2022-04-07 10:12:49,115 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:12:49,116 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:13:02,503 INFO Set uid to user 0 succeeded
2022-04-07 10:13:02,808 INFO RPC interface 'supervisor' initialized
2022-04-07 10:13:02,808 CRIT Server 'unix_http_server' running without any HTTP authentication checking
2022-04-07 10:13:02,816 INFO supervisord started with pid 12
2022-04-07 10:13:03,819 INFO spawned: 'apache2' with pid 14
2022-04-07 10:13:03,821 INFO spawned: 'php-fpm7.4' with pid 15
2022-04-07 10:13:03,824 INFO spawned: 'rsyslog' with pid 16
2022-04-07 10:13:03,829 INFO exited: rsyslog (exit status 1; not expected)
2022-04-07 10:13:04,846 INFO success: apache2 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:13:04,846 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:13:04,848 INFO spawned: 'rsyslog' with pid 81
2022-04-07 10:13:09,554 INFO Set uid to user 0 succeeded
2022-04-07 10:13:09,556 INFO RPC interface 'supervisor' initialized
2022-04-07 10:13:09,556 CRIT Server 'unix_http_server' running without any HTTP authentication checking
2022-04-07 10:13:09,557 INFO supervisord started with pid 30
2022-04-07 10:13:10,560 INFO spawned: 'apache2' with pid 32
2022-04-07 10:13:10,563 INFO spawned: 'php-fpm7.4' with pid 33
2022-04-07 10:13:10,565 INFO spawned: 'rsyslog' with pid 34
2022-04-07 10:13:11,600 INFO success: apache2 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:13:11,600 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:13:11,600 INFO success: rsyslog entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:13:11,601 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:13:12,605 INFO spawned: 'php-fpm7.4' with pid 106
2022-04-07 10:13:13,637 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:13:13,637 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:13:14,640 INFO spawned: 'php-fpm7.4' with pid 107
2022-04-07 10:13:15,672 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:13:15,672 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:13:16,676 INFO spawned: 'php-fpm7.4' with pid 108
2022-04-07 10:13:17,699 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:13:17,699 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:13:18,703 INFO spawned: 'php-fpm7.4' with pid 109
2022-04-07 10:13:19,726 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:13:19,726 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:13:20,729 INFO spawned: 'php-fpm7.4' with pid 110
2022-04-07 10:13:21,768 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:13:21,768 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:13:22,772 INFO spawned: 'php-fpm7.4' with pid 111
2022-04-07 10:13:23,795 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:13:23,796 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:13:24,800 INFO spawned: 'php-fpm7.4' with pid 112
2022-04-07 10:13:25,822 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:13:25,822 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:13:26,826 INFO spawned: 'php-fpm7.4' with pid 113
2022-04-07 10:13:27,846 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:13:27,847 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:13:28,849 INFO spawned: 'php-fpm7.4' with pid 114
2022-04-07 10:13:29,882 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:13:29,882 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:13:30,886 INFO spawned: 'php-fpm7.4' with pid 115
2022-04-07 10:13:42,502 INFO Set uid to user 0 succeeded
2022-04-07 10:13:42,504 INFO RPC interface 'supervisor' initialized
2022-04-07 10:13:42,504 CRIT Server 'unix_http_server' running without any HTTP authentication checking
2022-04-07 10:13:42,504 INFO supervisord started with pid 27
2022-04-07 10:13:43,507 INFO spawned: 'apache2' with pid 29
2022-04-07 10:13:43,510 INFO spawned: 'php-fpm7.4' with pid 30
2022-04-07 10:13:43,512 INFO spawned: 'rsyslog' with pid 31
2022-04-07 10:13:44,532 INFO success: apache2 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:13:44,532 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:13:44,532 INFO success: rsyslog entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:13:44,532 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:23:38,343 INFO Set uid to user 0 succeeded
2022-04-07 10:23:38,345 INFO RPC interface 'supervisor' initialized
2022-04-07 10:23:38,345 CRIT Server 'unix_http_server' running without any HTTP authentication checking
2022-04-07 10:23:38,346 INFO supervisord started with pid 28
2022-04-07 10:23:39,349 INFO spawned: 'apache2' with pid 30
2022-04-07 10:23:39,350 INFO spawnerr: can't find command '/usr/sbin/php-fpm7.4'
2022-04-07 10:23:39,352 INFO spawned: 'rsyslog' with pid 31
2022-04-07 10:23:40,387 INFO success: apache2 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:23:40,387 INFO spawnerr: can't find command '/usr/sbin/php-fpm7.4'
2022-04-07 10:23:40,387 INFO success: rsyslog entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:23:42,390 INFO spawnerr: can't find command '/usr/sbin/php-fpm7.4'
2022-04-07 10:23:45,394 INFO spawnerr: can't find command '/usr/sbin/php-fpm7.4'
2022-04-07 10:23:45,395 INFO gave up: php-fpm7.4 entered FATAL state, too many start retries too quickly
2022-04-07 10:24:29,223 INFO Set uid to user 0 succeeded
2022-04-07 10:24:29,224 INFO RPC interface 'supervisor' initialized
2022-04-07 10:24:29,225 CRIT Server 'unix_http_server' running without any HTTP authentication checking
2022-04-07 10:24:29,225 INFO supervisord started with pid 28
2022-04-07 10:24:30,229 INFO spawned: 'apache2' with pid 30
2022-04-07 10:24:30,230 INFO spawnerr: can't find command '/usr/sbin/php7.3-fpm'
2022-04-07 10:24:30,233 INFO spawned: 'rsyslog' with pid 31
2022-04-07 10:24:31,263 INFO success: apache2 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:24:31,263 INFO spawnerr: can't find command '/usr/sbin/php7.3-fpm'
2022-04-07 10:24:31,263 INFO success: rsyslog entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:24:33,267 INFO spawnerr: can't find command '/usr/sbin/php7.3-fpm'
2022-04-07 10:24:36,271 INFO spawnerr: can't find command '/usr/sbin/php7.3-fpm'
2022-04-07 10:24:36,271 INFO gave up: php-fpm7.3 entered FATAL state, too many start retries too quickly
2022-04-07 10:25:11,769 INFO Set uid to user 0 succeeded
2022-04-07 10:25:11,771 INFO RPC interface 'supervisor' initialized
2022-04-07 10:25:11,771 CRIT Server 'unix_http_server' running without any HTTP authentication checking
2022-04-07 10:25:11,771 INFO supervisord started with pid 28
2022-04-07 10:25:12,776 INFO spawned: 'apache2' with pid 30
2022-04-07 10:25:12,779 INFO spawned: 'php-fpm7.3' with pid 31
2022-04-07 10:25:12,781 INFO spawned: 'rsyslog' with pid 32
2022-04-07 10:25:13,814 INFO success: apache2 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:25:13,814 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:25:13,815 INFO success: rsyslog entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:25:13,815 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:25:14,820 INFO spawned: 'php-fpm7.3' with pid 104
2022-04-07 10:25:15,855 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:25:15,855 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:25:16,859 INFO spawned: 'php-fpm7.3' with pid 105
2022-04-07 10:25:17,885 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:25:17,885 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:25:18,889 INFO spawned: 'php-fpm7.3' with pid 106
2022-04-07 10:25:19,924 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:25:19,924 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:25:20,935 INFO spawned: 'php-fpm7.3' with pid 107
2022-04-07 10:25:21,969 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:25:21,969 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:25:22,972 INFO spawned: 'php-fpm7.3' with pid 108
2022-04-07 10:25:24,005 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:25:24,006 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:25:25,009 INFO spawned: 'php-fpm7.3' with pid 109
2022-04-07 10:25:26,044 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:25:26,044 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:25:27,048 INFO spawned: 'php-fpm7.3' with pid 110
2022-04-07 10:25:28,083 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:25:28,083 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:25:29,087 INFO spawned: 'php-fpm7.3' with pid 111
2022-04-07 10:25:30,121 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:25:30,121 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:25:31,125 INFO spawned: 'php-fpm7.3' with pid 112
2022-04-07 10:25:32,149 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:25:32,149 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:25:33,153 INFO spawned: 'php-fpm7.3' with pid 113
2022-04-07 10:25:34,179 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:25:34,179 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:25:35,182 INFO spawned: 'php-fpm7.3' with pid 114
2022-04-07 10:25:36,213 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:25:36,214 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:25:37,218 INFO spawned: 'php-fpm7.3' with pid 122
2022-04-07 10:25:38,252 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:25:38,252 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:25:39,255 INFO spawned: 'php-fpm7.3' with pid 124
2022-04-07 10:25:40,288 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:25:40,288 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:25:41,292 INFO spawned: 'php-fpm7.3' with pid 125
2022-04-07 10:25:42,316 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:25:42,317 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:25:43,321 INFO spawned: 'php-fpm7.3' with pid 126
2022-04-07 10:25:44,345 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:25:44,346 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:25:45,349 INFO spawned: 'php-fpm7.3' with pid 127
2022-04-07 10:25:46,375 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:25:46,375 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:25:47,380 INFO spawned: 'php-fpm7.3' with pid 128
2022-04-07 10:25:48,414 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:25:48,415 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:25:49,425 INFO spawned: 'php-fpm7.3' with pid 129
2022-04-07 10:25:50,459 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:25:50,460 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:25:51,463 INFO spawned: 'php-fpm7.3' with pid 131
2022-04-07 10:25:52,497 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:25:52,497 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:25:53,501 INFO spawned: 'php-fpm7.3' with pid 132
2022-04-07 10:25:54,539 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:25:54,539 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:25:55,542 INFO spawned: 'php-fpm7.3' with pid 133
2022-04-07 10:25:56,576 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:25:56,577 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:25:57,580 INFO spawned: 'php-fpm7.3' with pid 134
2022-04-07 10:25:58,613 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:25:58,613 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:25:59,618 INFO spawned: 'php-fpm7.3' with pid 135
2022-04-07 10:26:00,652 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:26:00,652 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:26:01,657 INFO spawned: 'php-fpm7.3' with pid 136
2022-04-07 10:26:02,691 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:26:02,691 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:26:03,694 INFO spawned: 'php-fpm7.3' with pid 137
2022-04-07 10:26:04,731 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:26:04,731 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:28:58,637 INFO Set uid to user 0 succeeded
2022-04-07 10:28:58,639 INFO RPC interface 'supervisor' initialized
2022-04-07 10:28:58,639 CRIT Server 'unix_http_server' running without any HTTP authentication checking
2022-04-07 10:28:58,639 INFO supervisord started with pid 29
2022-04-07 10:28:59,642 INFO spawned: 'apache2' with pid 31
2022-04-07 10:28:59,645 INFO spawned: 'php-fpm7.3' with pid 32
2022-04-07 10:28:59,647 INFO spawned: 'rsyslog' with pid 33
2022-04-07 10:29:00,683 INFO success: apache2 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:29:00,683 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:29:00,683 INFO success: rsyslog entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:29:00,683 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:29:01,687 INFO spawned: 'php-fpm7.3' with pid 105
2022-04-07 10:29:02,720 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:29:02,720 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:29:03,723 INFO spawned: 'php-fpm7.3' with pid 106
2022-04-07 10:29:04,755 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:29:04,755 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:29:05,758 INFO spawned: 'php-fpm7.3' with pid 107
2022-04-07 10:29:06,783 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:29:06,783 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:31:55,080 INFO Set uid to user 0 succeeded
2022-04-07 10:31:55,082 INFO RPC interface 'supervisor' initialized
2022-04-07 10:31:55,082 CRIT Server 'unix_http_server' running without any HTTP authentication checking
2022-04-07 10:31:55,082 INFO supervisord started with pid 28
2022-04-07 10:31:56,084 INFO spawned: 'apache2' with pid 30
2022-04-07 10:31:56,087 INFO spawned: 'php-fpm7.3' with pid 31
2022-04-07 10:31:56,089 INFO spawned: 'rsyslog' with pid 32
2022-04-07 10:31:57,119 INFO success: apache2 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:31:57,119 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:31:57,119 INFO success: rsyslog entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:31:57,119 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:31:58,123 INFO spawned: 'php-fpm7.3' with pid 104
2022-04-07 10:31:59,157 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:31:59,157 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:32:00,161 INFO spawned: 'php-fpm7.3' with pid 105
2022-04-07 10:32:01,199 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:32:01,199 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:32:02,202 INFO spawned: 'php-fpm7.3' with pid 106
2022-04-07 10:32:03,237 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:32:03,237 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:32:04,240 INFO spawned: 'php-fpm7.3' with pid 107
2022-04-07 10:32:05,275 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:32:05,275 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:32:06,278 INFO spawned: 'php-fpm7.3' with pid 108
2022-04-07 10:32:07,312 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:32:07,313 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:32:08,316 INFO spawned: 'php-fpm7.3' with pid 109
2022-04-07 10:32:09,351 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:32:09,351 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:32:10,355 INFO spawned: 'php-fpm7.3' with pid 110
2022-04-07 10:32:11,389 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:32:11,390 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:32:12,393 INFO spawned: 'php-fpm7.3' with pid 111
2022-04-07 10:32:13,416 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:32:13,416 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:32:14,420 INFO spawned: 'php-fpm7.3' with pid 112
2022-04-07 10:32:15,454 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:32:15,455 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:32:16,458 INFO spawned: 'php-fpm7.3' with pid 113
2022-04-07 10:32:17,492 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:32:17,492 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:32:18,496 INFO spawned: 'php-fpm7.3' with pid 114
2022-04-07 10:32:19,533 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:32:19,534 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:32:20,537 INFO spawned: 'php-fpm7.3' with pid 115
2022-04-07 10:32:21,570 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:32:21,570 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:32:22,580 INFO spawned: 'php-fpm7.3' with pid 116
2022-04-07 10:32:23,612 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:32:23,612 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:32:24,615 INFO spawned: 'php-fpm7.3' with pid 117
2022-04-07 10:32:25,639 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:32:25,639 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:32:26,642 INFO spawned: 'php-fpm7.3' with pid 118
2022-04-07 10:32:27,663 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:32:27,663 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:32:28,667 INFO spawned: 'php-fpm7.3' with pid 119
2022-04-07 10:32:29,702 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:32:29,702 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:32:30,705 INFO spawned: 'php-fpm7.3' with pid 120
2022-04-07 10:32:31,738 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:32:31,738 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:32:32,740 INFO spawned: 'php-fpm7.3' with pid 121
2022-04-07 10:32:33,773 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:32:33,773 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:32:34,777 INFO spawned: 'php-fpm7.3' with pid 122
2022-04-07 10:32:35,814 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:32:35,814 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:32:36,819 INFO spawned: 'php-fpm7.3' with pid 130
2022-04-07 10:32:37,852 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:32:37,852 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:32:38,856 INFO spawned: 'php-fpm7.3' with pid 131
2022-04-07 10:32:39,884 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:32:39,884 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:32:40,888 INFO spawned: 'php-fpm7.3' with pid 133
2022-04-07 10:32:41,920 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:32:41,921 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:32:42,925 INFO spawned: 'php-fpm7.3' with pid 134
2022-04-07 10:32:43,957 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:32:43,958 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:32:44,960 INFO spawned: 'php-fpm7.3' with pid 135
2022-04-07 10:32:45,982 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:32:45,982 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:32:46,985 INFO spawned: 'php-fpm7.3' with pid 136
2022-04-07 10:32:48,008 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:32:48,008 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:32:49,012 INFO spawned: 'php-fpm7.3' with pid 137
2022-04-07 10:32:50,045 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:32:50,045 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:32:51,049 INFO spawned: 'php-fpm7.3' with pid 138
2022-04-07 10:32:52,074 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:32:52,075 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:32:53,078 INFO spawned: 'php-fpm7.3' with pid 139
2022-04-07 10:32:54,112 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:32:54,113 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:32:55,124 INFO spawned: 'php-fpm7.3' with pid 140
2022-04-07 10:32:56,147 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:32:56,147 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:32:57,150 INFO spawned: 'php-fpm7.3' with pid 141
2022-04-07 10:32:58,182 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:32:58,183 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:32:59,185 INFO spawned: 'php-fpm7.3' with pid 142
2022-04-07 10:33:00,218 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:33:00,219 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:33:01,222 INFO spawned: 'php-fpm7.3' with pid 143
2022-04-07 10:33:02,255 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:33:02,255 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:33:03,258 INFO spawned: 'php-fpm7.3' with pid 144
2022-04-07 10:33:04,294 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:33:04,294 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:33:05,297 INFO spawned: 'php-fpm7.3' with pid 145
2022-04-07 10:33:06,332 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:33:06,332 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:33:07,336 INFO spawned: 'php-fpm7.3' with pid 146
2022-04-07 10:33:08,369 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:33:08,370 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:33:09,373 INFO spawned: 'php-fpm7.3' with pid 147
2022-04-07 10:33:10,405 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:33:10,406 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:33:11,409 INFO spawned: 'php-fpm7.3' with pid 149
2022-04-07 10:33:12,442 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:33:12,442 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:33:13,446 INFO spawned: 'php-fpm7.3' with pid 151
2022-04-07 10:33:14,483 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:33:14,484 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:33:15,494 INFO spawned: 'php-fpm7.3' with pid 152
2022-04-07 10:33:16,534 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:33:16,535 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:33:17,538 INFO spawned: 'php-fpm7.3' with pid 153
2022-04-07 10:33:18,573 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:33:18,574 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:33:19,576 INFO spawned: 'php-fpm7.3' with pid 154
2022-04-07 10:33:20,611 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:33:20,611 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:33:21,615 INFO spawned: 'php-fpm7.3' with pid 155
2022-04-07 10:33:22,649 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:33:22,650 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:33:23,654 INFO spawned: 'php-fpm7.3' with pid 156
2022-04-07 10:33:24,688 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:33:24,688 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:33:25,692 INFO spawned: 'php-fpm7.3' with pid 158
2022-04-07 10:33:26,726 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:33:26,727 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:33:27,730 INFO spawned: 'php-fpm7.3' with pid 159
2022-04-07 10:33:28,762 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:33:28,762 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:33:29,765 INFO spawned: 'php-fpm7.3' with pid 160
2022-04-07 10:33:30,790 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:33:30,790 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:33:31,795 INFO spawned: 'php-fpm7.3' with pid 161
2022-04-07 10:33:32,821 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:33:32,822 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:33:33,824 INFO spawned: 'php-fpm7.3' with pid 162
2022-04-07 10:33:34,862 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:33:34,863 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:33:35,866 INFO spawned: 'php-fpm7.3' with pid 163
2022-04-07 10:33:36,897 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:33:36,898 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:33:37,901 INFO spawned: 'php-fpm7.3' with pid 164
2022-04-07 10:33:38,934 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:33:38,934 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:33:39,937 INFO spawned: 'php-fpm7.3' with pid 165
2022-04-07 10:33:40,970 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:33:40,970 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:33:41,973 INFO spawned: 'php-fpm7.3' with pid 166
2022-04-07 10:33:43,006 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:33:43,007 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:33:44,017 INFO spawned: 'php-fpm7.3' with pid 167
2022-04-07 10:33:45,053 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:33:45,054 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:33:46,056 INFO spawned: 'php-fpm7.3' with pid 169
2022-04-07 10:33:47,082 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:33:47,083 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:33:48,086 INFO spawned: 'php-fpm7.3' with pid 170
2022-04-07 10:33:49,107 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:33:49,107 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:33:50,110 INFO spawned: 'php-fpm7.3' with pid 171
2022-04-07 10:33:51,141 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:33:51,141 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:33:52,144 INFO spawned: 'php-fpm7.3' with pid 172
2022-04-07 10:33:53,179 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:33:53,179 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:33:54,182 INFO spawned: 'php-fpm7.3' with pid 173
2022-04-07 10:33:55,215 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:33:55,215 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:33:56,218 INFO spawned: 'php-fpm7.3' with pid 174
2022-04-07 10:33:57,253 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:33:57,253 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:33:58,258 INFO spawned: 'php-fpm7.3' with pid 175
2022-04-07 10:33:59,290 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:33:59,291 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:34:00,294 INFO spawned: 'php-fpm7.3' with pid 176
2022-04-07 10:34:01,324 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:34:01,324 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:34:02,327 INFO spawned: 'php-fpm7.3' with pid 177
2022-04-07 10:34:03,357 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:34:03,357 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:34:04,360 INFO spawned: 'php-fpm7.3' with pid 178
2022-04-07 10:34:05,394 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:34:05,394 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:34:06,397 INFO spawned: 'php-fpm7.3' with pid 179
2022-04-07 10:34:07,430 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:34:07,430 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:34:08,440 INFO spawned: 'php-fpm7.3' with pid 180
2022-04-07 10:34:09,474 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:34:09,475 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:34:10,480 INFO spawned: 'php-fpm7.3' with pid 181
2022-04-07 10:34:11,512 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:34:11,512 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:34:12,515 INFO spawned: 'php-fpm7.3' with pid 182
2022-04-07 10:34:13,548 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:34:13,548 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:34:14,552 INFO spawned: 'php-fpm7.3' with pid 183
2022-04-07 10:34:15,585 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:34:15,585 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:34:16,588 INFO spawned: 'php-fpm7.3' with pid 184
2022-04-07 10:34:17,616 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:34:17,616 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:34:18,620 INFO spawned: 'php-fpm7.3' with pid 185
2022-04-07 10:34:19,653 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:34:19,653 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:34:20,656 INFO spawned: 'php-fpm7.3' with pid 186
2022-04-07 10:34:21,689 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:34:21,689 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:34:22,692 INFO spawned: 'php-fpm7.3' with pid 187
2022-04-07 10:34:23,723 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:34:23,724 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:34:24,727 INFO spawned: 'php-fpm7.3' with pid 188
2022-04-07 10:34:25,758 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:34:25,759 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:34:26,762 INFO spawned: 'php-fpm7.3' with pid 189
2022-04-07 10:34:27,800 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:34:27,800 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:34:28,803 INFO spawned: 'php-fpm7.3' with pid 190
2022-04-07 10:34:29,836 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:34:29,837 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:34:30,840 INFO spawned: 'php-fpm7.3' with pid 191
2022-04-07 10:34:31,873 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:34:31,874 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:34:32,876 INFO spawned: 'php-fpm7.3' with pid 192
2022-04-07 10:34:33,902 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:34:33,902 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:34:34,906 INFO spawned: 'php-fpm7.3' with pid 193
2022-04-07 10:34:35,937 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:34:35,937 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:34:36,941 INFO spawned: 'php-fpm7.3' with pid 194
2022-04-07 10:34:37,973 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:34:37,974 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:34:38,976 INFO spawned: 'php-fpm7.3' with pid 195
2022-04-07 10:34:40,008 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:34:40,008 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:34:41,012 INFO spawned: 'php-fpm7.3' with pid 196
2022-04-07 10:34:42,045 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:34:42,045 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:34:43,048 INFO spawned: 'php-fpm7.3' with pid 197
2022-04-07 10:34:44,084 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:34:44,084 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:34:45,088 INFO spawned: 'php-fpm7.3' with pid 198
2022-04-07 10:34:46,120 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:34:46,120 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:34:47,125 INFO spawned: 'php-fpm7.3' with pid 199
2022-04-07 10:34:48,157 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:34:48,157 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:34:49,160 INFO spawned: 'php-fpm7.3' with pid 200
2022-04-07 10:34:50,190 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:34:50,191 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:34:51,194 INFO spawned: 'php-fpm7.3' with pid 201
2022-04-07 10:34:52,229 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:34:52,229 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:34:53,232 INFO spawned: 'php-fpm7.3' with pid 202
2022-04-07 10:34:54,265 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:34:54,266 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:34:55,276 INFO spawned: 'php-fpm7.3' with pid 203
2022-04-07 10:34:56,310 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:34:56,310 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:34:57,313 INFO spawned: 'php-fpm7.3' with pid 204
2022-04-07 10:34:58,345 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:34:58,345 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:34:59,348 INFO spawned: 'php-fpm7.3' with pid 205
2022-04-07 10:35:00,381 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:35:00,381 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:35:01,384 INFO spawned: 'php-fpm7.3' with pid 206
2022-04-07 10:35:02,416 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:35:02,416 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:35:03,420 INFO spawned: 'php-fpm7.3' with pid 207
2022-04-07 10:35:04,452 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:35:04,453 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:35:05,456 INFO spawned: 'php-fpm7.3' with pid 208
2022-04-07 10:35:06,489 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:35:06,489 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:35:07,493 INFO spawned: 'php-fpm7.3' with pid 209
2022-04-07 10:35:08,526 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:35:08,527 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:35:09,530 INFO spawned: 'php-fpm7.3' with pid 210
2022-04-07 10:35:10,565 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:35:10,565 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:35:11,568 INFO spawned: 'php-fpm7.3' with pid 211
2022-04-07 10:35:12,600 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:35:12,600 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:35:13,602 INFO spawned: 'php-fpm7.3' with pid 212
2022-04-07 10:35:14,626 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:35:14,626 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:35:15,636 INFO spawned: 'php-fpm7.3' with pid 213
2022-04-07 10:35:16,669 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:35:16,669 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:35:17,672 INFO spawned: 'php-fpm7.3' with pid 214
2022-04-07 10:35:18,705 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:35:18,705 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:35:19,707 INFO spawned: 'php-fpm7.3' with pid 215
2022-04-07 10:35:20,730 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:35:20,731 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:35:21,734 INFO spawned: 'php-fpm7.3' with pid 216
2022-04-07 10:35:22,768 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:35:22,768 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:35:23,771 INFO spawned: 'php-fpm7.3' with pid 217
2022-04-07 10:35:24,803 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:35:24,804 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:35:25,806 INFO spawned: 'php-fpm7.3' with pid 218
2022-04-07 10:35:26,833 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:35:26,833 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:35:27,836 INFO spawned: 'php-fpm7.3' with pid 219
2022-04-07 10:35:28,868 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:35:28,868 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:35:29,871 INFO spawned: 'php-fpm7.3' with pid 220
2022-04-07 10:35:30,904 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:35:30,904 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:35:31,908 INFO spawned: 'php-fpm7.3' with pid 221
2022-04-07 10:35:32,938 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:35:32,939 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:35:33,941 INFO spawned: 'php-fpm7.3' with pid 222
2022-04-07 10:35:34,971 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:35:34,971 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:35:35,976 INFO spawned: 'php-fpm7.3' with pid 223
2022-04-07 10:35:37,007 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:35:37,007 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:35:38,011 INFO spawned: 'php-fpm7.3' with pid 224
2022-04-07 10:35:39,044 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:35:39,044 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:35:40,048 INFO spawned: 'php-fpm7.3' with pid 225
2022-04-07 10:35:41,081 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:35:41,081 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:35:42,084 INFO spawned: 'php-fpm7.3' with pid 226
2022-04-07 10:35:43,120 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:35:43,120 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:35:44,123 INFO spawned: 'php-fpm7.3' with pid 227
2022-04-07 10:35:45,154 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:35:45,155 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:35:46,159 INFO spawned: 'php-fpm7.3' with pid 228
2022-04-07 10:35:47,190 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:35:47,190 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:35:48,192 INFO spawned: 'php-fpm7.3' with pid 229
2022-04-07 10:35:49,227 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:35:49,228 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:35:50,230 INFO spawned: 'php-fpm7.3' with pid 230
2022-04-07 10:35:51,253 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:35:51,253 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:35:52,257 INFO spawned: 'php-fpm7.3' with pid 231
2022-04-07 10:35:53,289 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:35:53,289 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:35:54,292 INFO spawned: 'php-fpm7.3' with pid 232
2022-04-07 10:35:55,319 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:35:55,319 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:35:56,322 INFO spawned: 'php-fpm7.3' with pid 233
2022-04-07 10:35:57,356 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:35:57,356 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:35:58,360 INFO spawned: 'php-fpm7.3' with pid 234
2022-04-07 10:35:59,390 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:35:59,391 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:36:00,395 INFO spawned: 'php-fpm7.3' with pid 235
2022-04-07 10:36:01,429 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:36:01,429 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:36:02,432 INFO spawned: 'php-fpm7.3' with pid 236
2022-04-07 10:36:03,468 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:36:03,469 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:36:04,473 INFO spawned: 'php-fpm7.3' with pid 237
2022-04-07 10:36:05,504 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:36:05,504 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:36:06,508 INFO spawned: 'php-fpm7.3' with pid 238
2022-04-07 10:36:07,531 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:36:07,531 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:36:08,540 INFO spawned: 'php-fpm7.3' with pid 239
2022-04-07 10:36:09,574 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:36:09,574 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:36:10,580 INFO spawned: 'php-fpm7.3' with pid 240
2022-04-07 10:36:11,607 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:36:11,607 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:36:12,610 INFO spawned: 'php-fpm7.3' with pid 241
2022-04-07 10:36:13,642 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:36:13,643 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:36:14,646 INFO spawned: 'php-fpm7.3' with pid 242
2022-04-07 10:36:15,669 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:36:15,669 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:36:16,673 INFO spawned: 'php-fpm7.3' with pid 243
2022-04-07 10:36:17,707 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:36:17,707 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:36:18,711 INFO spawned: 'php-fpm7.3' with pid 244
2022-04-07 10:36:19,744 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:36:19,744 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:36:20,748 INFO spawned: 'php-fpm7.3' with pid 245
2022-04-07 10:36:21,780 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:36:21,781 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:36:22,791 INFO spawned: 'php-fpm7.3' with pid 249
2022-04-07 10:36:23,814 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:36:23,814 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:36:24,818 INFO spawned: 'php-fpm7.3' with pid 250
2022-04-07 10:36:25,846 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:36:25,846 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:36:26,849 INFO spawned: 'php-fpm7.3' with pid 251
2022-04-07 10:36:27,873 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:36:27,874 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:36:28,877 INFO spawned: 'php-fpm7.3' with pid 252
2022-04-07 10:36:29,910 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:36:29,910 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:36:30,914 INFO spawned: 'php-fpm7.3' with pid 253
2022-04-07 10:36:31,938 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:36:31,939 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:36:32,941 INFO spawned: 'php-fpm7.3' with pid 259
2022-04-07 10:36:33,974 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:36:33,974 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:36:34,979 INFO spawned: 'php-fpm7.3' with pid 260
2022-04-07 10:36:36,015 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:36:36,015 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:36:37,019 INFO spawned: 'php-fpm7.3' with pid 264
2022-04-07 10:36:38,043 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:36:38,043 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:36:39,046 INFO spawned: 'php-fpm7.3' with pid 265
2022-04-07 10:36:40,081 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:36:40,081 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:36:41,084 INFO spawned: 'php-fpm7.3' with pid 266
2022-04-07 10:36:42,116 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:36:42,116 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:36:43,119 INFO spawned: 'php-fpm7.3' with pid 267
2022-04-07 10:36:44,153 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:36:44,153 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:36:45,157 INFO spawned: 'php-fpm7.3' with pid 268
2022-04-07 10:36:46,181 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:36:46,181 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:36:47,185 INFO spawned: 'php-fpm7.3' with pid 269
2022-04-07 10:36:48,208 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:36:48,209 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:36:49,212 INFO spawned: 'php-fpm7.3' with pid 270
2022-04-07 10:36:50,238 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:36:50,238 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:36:51,242 INFO spawned: 'php-fpm7.3' with pid 271
2022-04-07 10:36:52,264 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:36:52,264 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:36:53,268 INFO spawned: 'php-fpm7.3' with pid 272
2022-04-07 10:36:54,302 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:36:54,302 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:36:55,313 INFO spawned: 'php-fpm7.3' with pid 276
2022-04-07 10:36:56,338 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:36:56,338 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:36:57,342 INFO spawned: 'php-fpm7.3' with pid 277
2022-04-07 10:36:58,365 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:36:58,366 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:36:59,369 INFO spawned: 'php-fpm7.3' with pid 278
2022-04-07 10:37:00,404 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:37:00,404 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:37:01,408 INFO spawned: 'php-fpm7.3' with pid 286
2022-04-07 10:37:02,429 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:37:02,429 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:37:03,433 INFO spawned: 'php-fpm7.3' with pid 287
2022-04-07 10:37:04,321 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:37:05,375 INFO spawned: 'php-fpm7.3' with pid 301
2022-04-07 10:37:06,396 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:37:06,397 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:37:07,399 INFO spawned: 'php-fpm7.3' with pid 302
2022-04-07 10:37:08,421 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:37:08,421 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:37:09,425 INFO spawned: 'php-fpm7.3' with pid 303
2022-04-07 10:37:10,457 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:37:10,457 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:37:11,460 INFO spawned: 'php-fpm7.3' with pid 304
2022-04-07 10:37:12,493 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:37:12,493 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:37:13,497 INFO spawned: 'php-fpm7.3' with pid 305
2022-04-07 10:37:14,520 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:37:14,521 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:37:15,525 INFO spawned: 'php-fpm7.3' with pid 306
2022-04-07 10:37:16,548 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:37:16,549 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:37:17,552 INFO spawned: 'php-fpm7.3' with pid 307
2022-04-07 10:37:18,586 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:37:18,586 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:37:19,590 INFO spawned: 'php-fpm7.3' with pid 308
2022-04-07 10:37:20,623 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:37:20,623 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:37:21,627 INFO spawned: 'php-fpm7.3' with pid 309
2022-04-07 10:37:22,660 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:37:22,660 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:37:23,663 INFO spawned: 'php-fpm7.3' with pid 310
2022-04-07 10:37:24,695 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:37:24,695 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:37:25,699 INFO spawned: 'php-fpm7.3' with pid 311
2022-04-07 10:37:26,734 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:37:26,734 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:37:27,737 INFO spawned: 'php-fpm7.3' with pid 312
2022-04-07 10:37:28,770 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:37:28,770 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:37:29,774 INFO spawned: 'php-fpm7.3' with pid 313
2022-04-07 10:37:30,810 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:37:30,810 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:37:31,813 INFO spawned: 'php-fpm7.3' with pid 314
2022-04-07 10:37:32,846 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:37:32,847 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:37:33,850 INFO spawned: 'php-fpm7.3' with pid 315
2022-04-07 10:37:34,883 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:37:34,883 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:37:35,886 INFO spawned: 'php-fpm7.3' with pid 316
2022-04-07 10:37:36,919 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:37:36,919 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:37:37,923 INFO spawned: 'php-fpm7.3' with pid 317
2022-04-07 10:37:38,953 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:37:38,953 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:37:39,957 INFO spawned: 'php-fpm7.3' with pid 318
2022-04-07 10:37:40,986 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:37:40,987 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:37:41,990 INFO spawned: 'php-fpm7.3' with pid 319
2022-04-07 10:37:43,022 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:37:43,022 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:37:44,026 INFO spawned: 'php-fpm7.3' with pid 320
2022-04-07 10:37:45,062 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:37:45,062 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:37:46,065 INFO spawned: 'php-fpm7.3' with pid 321
2022-04-07 10:37:47,096 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:37:47,097 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:37:48,100 INFO spawned: 'php-fpm7.3' with pid 322
2022-04-07 10:37:49,132 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:37:49,132 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:37:50,135 INFO spawned: 'php-fpm7.3' with pid 323
2022-04-07 10:37:51,169 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:37:51,169 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:37:52,172 INFO spawned: 'php-fpm7.3' with pid 324
2022-04-07 10:37:53,203 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:37:53,203 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:37:54,206 INFO spawned: 'php-fpm7.3' with pid 325
2022-04-07 10:37:55,243 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:37:55,243 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:37:56,246 INFO spawned: 'php-fpm7.3' with pid 326
2022-04-07 10:37:57,270 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:37:57,270 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:37:58,275 INFO spawned: 'php-fpm7.3' with pid 327
2022-04-07 10:37:59,306 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:37:59,306 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:38:00,309 INFO spawned: 'php-fpm7.3' with pid 328
2022-04-07 10:38:01,343 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:38:01,343 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:38:02,346 INFO spawned: 'php-fpm7.3' with pid 329
2022-04-07 10:38:03,381 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:38:03,381 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:38:04,384 INFO spawned: 'php-fpm7.3' with pid 330
2022-04-07 10:38:05,414 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:38:05,415 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:38:06,418 INFO spawned: 'php-fpm7.3' with pid 331
2022-04-07 10:38:07,449 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:38:07,450 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:38:08,453 INFO spawned: 'php-fpm7.3' with pid 332
2022-04-07 10:38:09,486 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:38:09,486 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:38:10,490 INFO spawned: 'php-fpm7.3' with pid 333
2022-04-07 10:38:11,525 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:38:11,525 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:38:12,528 INFO spawned: 'php-fpm7.3' with pid 334
2022-04-07 10:38:13,559 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:38:13,559 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:38:14,562 INFO spawned: 'php-fpm7.3' with pid 335
2022-04-07 10:38:15,595 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:38:15,595 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:38:16,598 INFO spawned: 'php-fpm7.3' with pid 336
2022-04-07 10:38:17,624 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:38:17,625 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:38:18,628 INFO spawned: 'php-fpm7.3' with pid 337
2022-04-07 10:38:19,661 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:38:19,662 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:38:20,664 INFO spawned: 'php-fpm7.3' with pid 338
2022-04-07 10:38:21,695 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:38:21,695 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:38:22,699 INFO spawned: 'php-fpm7.3' with pid 339
2022-04-07 10:38:23,734 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:38:23,734 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:38:24,737 INFO spawned: 'php-fpm7.3' with pid 340
2022-04-07 10:38:25,767 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:38:25,767 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:38:26,770 INFO spawned: 'php-fpm7.3' with pid 341
2022-04-07 10:38:27,803 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:38:27,804 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:38:28,806 INFO spawned: 'php-fpm7.3' with pid 342
2022-04-07 10:38:29,830 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:38:29,830 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:38:30,833 INFO spawned: 'php-fpm7.3' with pid 343
2022-04-07 10:38:31,867 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:38:31,867 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:38:32,870 INFO spawned: 'php-fpm7.3' with pid 344
2022-04-07 10:38:33,900 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:38:33,900 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:38:34,905 INFO spawned: 'php-fpm7.3' with pid 345
2022-04-07 10:38:35,934 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:38:35,935 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:38:36,938 INFO spawned: 'php-fpm7.3' with pid 346
2022-04-07 10:38:37,970 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:38:37,970 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:38:38,972 INFO spawned: 'php-fpm7.3' with pid 347
2022-04-07 10:38:39,999 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:38:39,999 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:38:41,001 INFO spawned: 'php-fpm7.3' with pid 348
2022-04-07 10:38:42,028 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:38:42,028 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:38:43,030 INFO spawned: 'php-fpm7.3' with pid 349
2022-04-07 10:38:44,051 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:38:44,051 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:38:45,054 INFO spawned: 'php-fpm7.3' with pid 350
2022-04-07 10:38:46,088 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:38:46,089 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:38:47,092 INFO spawned: 'php-fpm7.3' with pid 351
2022-04-07 10:38:48,127 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:38:48,127 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:38:49,137 INFO spawned: 'php-fpm7.3' with pid 352
2022-04-07 10:38:50,160 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:38:50,161 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:38:51,164 INFO spawned: 'php-fpm7.3' with pid 353
2022-04-07 10:38:52,195 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:38:52,195 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:38:53,198 INFO spawned: 'php-fpm7.3' with pid 354
2022-04-07 10:38:54,230 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:38:54,231 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:38:55,234 INFO spawned: 'php-fpm7.3' with pid 355
2022-04-07 10:38:56,267 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:38:56,267 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:38:57,270 INFO spawned: 'php-fpm7.3' with pid 356
2022-04-07 10:38:58,295 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:38:58,295 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:38:59,298 INFO spawned: 'php-fpm7.3' with pid 357
2022-04-07 10:39:00,331 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:39:00,331 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:39:01,334 INFO spawned: 'php-fpm7.3' with pid 358
2022-04-07 10:39:02,367 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:39:02,367 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:39:03,370 INFO spawned: 'php-fpm7.3' with pid 359
2022-04-07 10:39:04,394 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:39:04,395 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:39:05,398 INFO spawned: 'php-fpm7.3' with pid 360
2022-04-07 10:39:06,432 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:39:06,432 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:39:07,436 INFO spawned: 'php-fpm7.3' with pid 361
2022-04-07 10:39:08,470 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:39:08,470 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:39:09,474 INFO spawned: 'php-fpm7.3' with pid 362
2022-04-07 10:39:10,504 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:39:10,504 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:39:11,507 INFO spawned: 'php-fpm7.3' with pid 363
2022-04-07 10:39:12,539 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:39:12,539 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:39:13,542 INFO spawned: 'php-fpm7.3' with pid 364
2022-04-07 10:39:14,572 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:39:14,572 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:39:15,575 INFO spawned: 'php-fpm7.3' with pid 365
2022-04-07 10:39:16,606 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:39:16,606 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:39:17,610 INFO spawned: 'php-fpm7.3' with pid 366
2022-04-07 10:39:18,644 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:39:18,644 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:39:19,647 INFO spawned: 'php-fpm7.3' with pid 367
2022-04-07 10:39:20,679 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:39:20,679 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:39:21,682 INFO spawned: 'php-fpm7.3' with pid 368
2022-04-07 10:39:22,713 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:39:22,714 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:39:23,716 INFO spawned: 'php-fpm7.3' with pid 369
2022-04-07 10:39:24,749 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:39:24,749 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:39:25,753 INFO spawned: 'php-fpm7.3' with pid 370
2022-04-07 10:39:26,787 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:39:26,787 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:39:27,791 INFO spawned: 'php-fpm7.3' with pid 371
2022-04-07 10:39:28,823 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:39:28,823 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:39:29,826 INFO spawned: 'php-fpm7.3' with pid 372
2022-04-07 10:39:30,858 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:39:30,858 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:39:31,862 INFO spawned: 'php-fpm7.3' with pid 373
2022-04-07 10:39:32,884 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:39:32,884 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:39:33,894 INFO spawned: 'php-fpm7.3' with pid 374
2022-04-07 10:39:34,931 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:39:34,931 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:39:35,934 INFO spawned: 'php-fpm7.3' with pid 375
2022-04-07 10:39:36,955 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:39:36,956 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:39:37,959 INFO spawned: 'php-fpm7.3' with pid 376
2022-04-07 10:39:38,990 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:39:38,991 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:39:39,994 INFO spawned: 'php-fpm7.3' with pid 377
2022-04-07 10:39:41,025 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:39:41,025 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:39:42,028 INFO spawned: 'php-fpm7.3' with pid 378
2022-04-07 10:39:43,062 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:39:43,062 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:39:44,065 INFO spawned: 'php-fpm7.3' with pid 379
2022-04-07 10:39:45,098 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:39:45,098 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:39:46,101 INFO spawned: 'php-fpm7.3' with pid 380
2022-04-07 10:39:47,134 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:39:47,135 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:39:48,138 INFO spawned: 'php-fpm7.3' with pid 381
2022-04-07 10:39:49,170 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:39:49,171 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:39:50,174 INFO spawned: 'php-fpm7.3' with pid 382
2022-04-07 10:39:51,204 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:39:51,204 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:39:52,208 INFO spawned: 'php-fpm7.3' with pid 383
2022-04-07 10:39:53,242 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:39:53,243 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:39:54,246 INFO spawned: 'php-fpm7.3' with pid 384
2022-04-07 10:39:55,279 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:39:55,279 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:39:56,282 INFO spawned: 'php-fpm7.3' with pid 385
2022-04-07 10:39:57,314 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:39:57,315 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:39:58,319 INFO spawned: 'php-fpm7.3' with pid 386
2022-04-07 10:39:59,345 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:39:59,346 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:40:00,348 INFO spawned: 'php-fpm7.3' with pid 387
2022-04-07 10:40:01,379 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:40:01,379 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:40:02,382 INFO spawned: 'php-fpm7.3' with pid 388
2022-04-07 10:40:03,415 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:40:03,415 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:40:04,418 INFO spawned: 'php-fpm7.3' with pid 389
2022-04-07 10:40:05,446 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:40:05,446 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:40:06,450 INFO spawned: 'php-fpm7.3' with pid 390
2022-04-07 10:40:07,483 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:40:07,483 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:40:08,486 INFO spawned: 'php-fpm7.3' with pid 391
2022-04-07 10:40:09,509 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:40:09,509 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:40:10,512 INFO spawned: 'php-fpm7.3' with pid 392
2022-04-07 10:40:11,545 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:40:11,545 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:40:12,548 INFO spawned: 'php-fpm7.3' with pid 393
2022-04-07 10:40:13,580 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:40:13,581 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:40:14,584 INFO spawned: 'php-fpm7.3' with pid 394
2022-04-07 10:40:15,618 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:40:15,618 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:40:16,628 INFO spawned: 'php-fpm7.3' with pid 395
2022-04-07 10:40:17,661 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:40:17,662 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:40:18,664 INFO spawned: 'php-fpm7.3' with pid 396
2022-04-07 10:40:19,694 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:40:19,695 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:40:20,698 INFO spawned: 'php-fpm7.3' with pid 397
2022-04-07 10:40:21,730 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:40:21,730 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:40:22,734 INFO spawned: 'php-fpm7.3' with pid 398
2022-04-07 10:40:23,765 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:40:23,766 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:40:24,769 INFO spawned: 'php-fpm7.3' with pid 399
2022-04-07 10:40:25,801 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:40:25,801 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:40:26,804 INFO spawned: 'php-fpm7.3' with pid 400
2022-04-07 10:40:27,838 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:40:27,838 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:40:28,842 INFO spawned: 'php-fpm7.3' with pid 401
2022-04-07 10:40:29,878 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:40:29,879 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:40:30,882 INFO spawned: 'php-fpm7.3' with pid 402
2022-04-07 10:40:31,917 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:40:31,918 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:40:32,921 INFO spawned: 'php-fpm7.3' with pid 403
2022-04-07 10:40:33,951 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:40:33,951 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:40:34,955 INFO spawned: 'php-fpm7.3' with pid 404
2022-04-07 10:40:35,987 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:40:35,987 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:40:36,991 INFO spawned: 'php-fpm7.3' with pid 405
2022-04-07 10:40:38,027 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:40:38,027 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:40:39,029 INFO spawned: 'php-fpm7.3' with pid 406
2022-04-07 10:40:40,049 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:40:40,049 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:40:41,052 INFO spawned: 'php-fpm7.3' with pid 407
2022-04-07 10:40:42,086 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:40:42,087 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:40:43,091 INFO spawned: 'php-fpm7.3' with pid 408
2022-04-07 10:40:44,122 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:40:44,123 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:40:45,126 INFO spawned: 'php-fpm7.3' with pid 409
2022-04-07 10:40:46,149 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:40:46,150 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:40:47,152 INFO spawned: 'php-fpm7.3' with pid 410
2022-04-07 10:40:48,187 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:40:48,187 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:40:49,190 INFO spawned: 'php-fpm7.3' with pid 411
2022-04-07 10:40:50,221 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:40:50,221 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:40:51,224 INFO spawned: 'php-fpm7.3' with pid 412
2022-04-07 10:40:52,257 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:40:52,257 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:40:53,260 INFO spawned: 'php-fpm7.3' with pid 413
2022-04-07 10:40:54,290 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:40:54,290 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:40:55,292 INFO spawned: 'php-fpm7.3' with pid 414
2022-04-07 10:40:56,324 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:40:56,324 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:40:57,327 INFO spawned: 'php-fpm7.3' with pid 415
2022-04-07 10:40:58,359 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:40:58,359 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:40:59,362 INFO spawned: 'php-fpm7.3' with pid 416
2022-04-07 10:41:00,393 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:41:00,393 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:41:01,396 INFO spawned: 'php-fpm7.3' with pid 417
2022-04-07 10:41:02,429 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:41:02,429 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:41:03,433 INFO spawned: 'php-fpm7.3' with pid 418
2022-04-07 10:41:04,454 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:41:04,455 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:41:05,458 INFO spawned: 'php-fpm7.3' with pid 419
2022-04-07 10:41:06,489 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:41:06,489 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:41:07,492 INFO spawned: 'php-fpm7.3' with pid 420
2022-04-07 10:41:08,524 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:41:08,524 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:41:09,527 INFO spawned: 'php-fpm7.3' with pid 421
2022-04-07 10:41:10,562 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:41:10,563 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:41:11,566 INFO spawned: 'php-fpm7.3' with pid 422
2022-04-07 10:41:12,598 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:41:12,598 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:41:13,602 INFO spawned: 'php-fpm7.3' with pid 423
2022-04-07 10:41:14,633 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:41:14,634 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:41:15,636 INFO spawned: 'php-fpm7.3' with pid 424
2022-04-07 10:41:16,668 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:41:16,668 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:41:17,672 INFO spawned: 'php-fpm7.3' with pid 425
2022-04-07 10:41:18,710 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:41:18,711 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:41:19,714 INFO spawned: 'php-fpm7.3' with pid 426
2022-04-07 10:41:20,744 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:41:20,745 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:41:21,748 INFO spawned: 'php-fpm7.3' with pid 427
2022-04-07 10:41:22,780 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:41:22,780 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:41:23,783 INFO spawned: 'php-fpm7.3' with pid 428
2022-04-07 10:41:24,818 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:41:24,818 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:41:25,822 INFO spawned: 'php-fpm7.3' with pid 429
2022-04-07 10:41:26,854 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:41:26,855 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:41:27,859 INFO spawned: 'php-fpm7.3' with pid 430
2022-04-07 10:41:28,890 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:41:28,890 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:41:29,893 INFO spawned: 'php-fpm7.3' with pid 431
2022-04-07 10:41:30,925 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:41:30,925 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:41:31,928 INFO spawned: 'php-fpm7.3' with pid 432
2022-04-07 10:41:32,963 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:41:32,963 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:41:33,966 INFO spawned: 'php-fpm7.3' with pid 433
2022-04-07 10:41:34,998 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:41:34,998 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:41:36,002 INFO spawned: 'php-fpm7.3' with pid 434
2022-04-07 10:41:37,033 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:41:37,033 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:41:38,036 INFO spawned: 'php-fpm7.3' with pid 435
2022-04-07 10:41:39,070 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:41:39,070 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:41:40,072 INFO spawned: 'php-fpm7.3' with pid 436
2022-04-07 10:41:41,100 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:41:41,101 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:41:42,104 INFO spawned: 'php-fpm7.3' with pid 437
2022-04-07 10:41:43,136 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:41:43,136 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:41:44,138 INFO spawned: 'php-fpm7.3' with pid 438
2022-04-07 10:41:45,170 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:41:45,170 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:41:46,174 INFO spawned: 'php-fpm7.3' with pid 439
2022-04-07 10:41:47,204 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:41:47,204 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:41:48,207 INFO spawned: 'php-fpm7.3' with pid 440
2022-04-07 10:41:49,239 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:41:49,239 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:41:50,242 INFO spawned: 'php-fpm7.3' with pid 441
2022-04-07 10:41:51,273 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:41:51,273 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:41:52,276 INFO spawned: 'php-fpm7.3' with pid 442
2022-04-07 10:41:53,310 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:41:53,310 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:41:54,313 INFO spawned: 'php-fpm7.3' with pid 443
2022-04-07 10:41:55,344 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:41:55,344 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:41:56,348 INFO spawned: 'php-fpm7.3' with pid 444
2022-04-07 10:41:57,381 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:41:57,382 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:41:58,385 INFO spawned: 'php-fpm7.3' with pid 445
2022-04-07 10:41:59,418 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:41:59,418 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:42:00,422 INFO spawned: 'php-fpm7.3' with pid 446
2022-04-07 10:42:01,451 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:42:01,451 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:42:02,455 INFO spawned: 'php-fpm7.3' with pid 447
2022-04-07 10:42:03,488 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:42:03,489 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:42:04,492 INFO spawned: 'php-fpm7.3' with pid 448
2022-04-07 10:42:05,526 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:42:05,527 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:42:06,530 INFO spawned: 'php-fpm7.3' with pid 449
2022-04-07 10:42:07,562 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:42:07,563 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:42:08,566 INFO spawned: 'php-fpm7.3' with pid 450
2022-04-07 10:42:09,600 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:42:09,600 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:42:10,603 INFO spawned: 'php-fpm7.3' with pid 451
2022-04-07 10:42:11,640 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:42:11,640 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:42:12,643 INFO spawned: 'php-fpm7.3' with pid 452
2022-04-07 10:42:13,674 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:42:13,674 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:42:14,679 INFO spawned: 'php-fpm7.3' with pid 453
2022-04-07 10:42:15,702 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:42:15,702 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:42:16,706 INFO spawned: 'php-fpm7.3' with pid 454
2022-04-07 10:42:17,740 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:42:17,740 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:42:18,744 INFO spawned: 'php-fpm7.3' with pid 455
2022-04-07 10:42:19,775 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:42:19,775 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:42:20,778 INFO spawned: 'php-fpm7.3' with pid 456
2022-04-07 10:42:21,804 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:42:21,804 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:42:22,809 INFO spawned: 'php-fpm7.3' with pid 457
2022-04-07 10:42:23,839 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:42:23,839 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:42:24,842 INFO spawned: 'php-fpm7.3' with pid 458
2022-04-07 10:42:25,876 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:42:25,877 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:42:26,880 INFO spawned: 'php-fpm7.3' with pid 459
2022-04-07 10:42:27,914 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:42:27,915 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:42:28,918 INFO spawned: 'php-fpm7.3' with pid 460
2022-04-07 10:42:29,948 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:42:29,949 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:42:30,952 INFO spawned: 'php-fpm7.3' with pid 461
2022-04-07 10:42:31,975 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:42:31,975 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:42:32,978 INFO spawned: 'php-fpm7.3' with pid 462
2022-04-07 10:42:34,000 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:42:34,000 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:42:35,011 INFO spawned: 'php-fpm7.3' with pid 463
2022-04-07 10:42:36,034 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:42:36,035 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:42:37,038 INFO spawned: 'php-fpm7.3' with pid 464
2022-04-07 10:42:38,070 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:42:38,071 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:42:39,074 INFO spawned: 'php-fpm7.3' with pid 465
2022-04-07 10:42:40,102 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:42:40,102 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:42:41,105 INFO spawned: 'php-fpm7.3' with pid 466
2022-04-07 10:42:42,136 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:42:42,136 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:42:43,148 INFO spawned: 'php-fpm7.3' with pid 467
2022-04-07 10:42:44,180 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:42:44,180 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:42:45,184 INFO spawned: 'php-fpm7.3' with pid 468
2022-04-07 10:42:46,218 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:42:46,219 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:42:47,222 INFO spawned: 'php-fpm7.3' with pid 469
2022-04-07 10:42:48,255 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:42:48,255 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:42:49,259 INFO spawned: 'php-fpm7.3' with pid 470
2022-04-07 10:42:50,289 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:42:50,290 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:42:51,292 INFO spawned: 'php-fpm7.3' with pid 471
2022-04-07 10:42:52,323 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:42:52,323 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:42:53,327 INFO spawned: 'php-fpm7.3' with pid 472
2022-04-07 10:42:54,362 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:42:54,362 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:42:55,366 INFO spawned: 'php-fpm7.3' with pid 473
2022-04-07 10:42:56,397 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:42:56,397 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:42:57,401 INFO spawned: 'php-fpm7.3' with pid 474
2022-04-07 10:42:58,433 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:42:58,433 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:42:59,437 INFO spawned: 'php-fpm7.3' with pid 475
2022-04-07 10:43:00,468 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:43:00,469 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:43:01,472 INFO spawned: 'php-fpm7.3' with pid 476
2022-04-07 10:43:02,502 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:43:02,503 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:43:03,507 INFO spawned: 'php-fpm7.3' with pid 477
2022-04-07 10:43:04,536 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:43:04,537 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:43:05,540 INFO spawned: 'php-fpm7.3' with pid 478
2022-04-07 10:43:06,573 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:43:06,573 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:43:07,584 INFO spawned: 'php-fpm7.3' with pid 479
2022-04-07 10:43:08,616 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:43:08,617 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:43:09,620 INFO spawned: 'php-fpm7.3' with pid 480
2022-04-07 10:43:10,652 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:43:10,652 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:43:11,656 INFO spawned: 'php-fpm7.3' with pid 481
2022-04-07 10:43:12,681 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:43:12,682 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:43:13,684 INFO spawned: 'php-fpm7.3' with pid 482
2022-04-07 10:43:14,717 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:43:14,717 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:43:15,721 INFO spawned: 'php-fpm7.3' with pid 483
2022-04-07 10:43:16,750 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:43:16,750 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:43:17,752 INFO spawned: 'php-fpm7.3' with pid 484
2022-04-07 10:43:18,783 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:43:18,783 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:43:19,786 INFO spawned: 'php-fpm7.3' with pid 485
2022-04-07 10:43:20,819 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:43:20,819 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:43:21,821 INFO spawned: 'php-fpm7.3' with pid 486
2022-04-07 10:43:22,842 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:43:22,842 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:43:23,845 INFO spawned: 'php-fpm7.3' with pid 487
2022-04-07 10:43:24,877 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:43:24,878 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:43:25,880 INFO spawned: 'php-fpm7.3' with pid 488
2022-04-07 10:43:26,915 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:43:26,915 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:43:27,918 INFO spawned: 'php-fpm7.3' with pid 489
2022-04-07 10:43:28,950 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:43:28,950 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:43:29,954 INFO spawned: 'php-fpm7.3' with pid 490
2022-04-07 10:43:30,985 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:43:30,985 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:43:31,996 INFO spawned: 'php-fpm7.3' with pid 491
2022-04-07 10:43:33,029 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:43:33,029 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:43:34,032 INFO spawned: 'php-fpm7.3' with pid 492
2022-04-07 10:43:35,066 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:43:35,066 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:43:36,070 INFO spawned: 'php-fpm7.3' with pid 493
2022-04-07 10:43:37,101 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:43:37,102 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:43:38,105 INFO spawned: 'php-fpm7.3' with pid 494
2022-04-07 10:43:39,135 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:43:39,136 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:43:40,139 INFO spawned: 'php-fpm7.3' with pid 495
2022-04-07 10:43:41,171 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:43:41,171 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:43:42,174 INFO spawned: 'php-fpm7.3' with pid 496
2022-04-07 10:43:43,205 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:43:43,205 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:43:44,207 INFO spawned: 'php-fpm7.3' with pid 497
2022-04-07 10:43:45,234 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:43:45,235 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:43:46,244 INFO spawned: 'php-fpm7.3' with pid 498
2022-04-07 10:43:47,277 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:43:47,277 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:43:48,280 INFO spawned: 'php-fpm7.3' with pid 499
2022-04-07 10:43:49,314 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:43:49,314 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:43:50,316 INFO spawned: 'php-fpm7.3' with pid 500
2022-04-07 10:43:51,345 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:43:51,345 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:43:52,349 INFO spawned: 'php-fpm7.3' with pid 501
2022-04-07 10:43:53,380 INFO success: php-fpm7.3 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:43:53,380 INFO exited: php-fpm7.3 (exit status 78; not expected)
2022-04-07 10:56:15,352 CRIT Supervisor is running as root. Privileges were not dropped because no user is specified in the config file. If you intend to run as root, you can set user=root in the config file to avoid this message.
2022-04-07 10:56:15,354 INFO RPC interface 'supervisor' initialized
2022-04-07 10:56:15,354 CRIT Server 'unix_http_server' running without any HTTP authentication checking
2022-04-07 10:56:15,354 INFO supervisord started with pid 28
2022-04-07 10:56:16,357 INFO spawned: 'apache2' with pid 30
2022-04-07 10:56:16,360 INFO spawned: 'php-fpm7.4' with pid 31
2022-04-07 10:56:16,361 INFO spawned: 'rsyslog' with pid 32
2022-04-07 10:56:17,384 INFO success: apache2 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:56:17,384 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:56:17,384 INFO success: rsyslog entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:56:17,385 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:56:18,388 INFO spawned: 'php-fpm7.4' with pid 104
2022-04-07 10:56:19,414 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:56:19,414 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:56:20,416 INFO spawned: 'php-fpm7.4' with pid 105
2022-04-07 10:56:21,445 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:56:21,445 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:56:22,449 INFO spawned: 'php-fpm7.4' with pid 106
2022-04-07 10:56:23,474 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:56:23,475 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:56:24,478 INFO spawned: 'php-fpm7.4' with pid 107
2022-04-07 10:56:25,499 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:56:25,499 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:56:26,503 INFO spawned: 'php-fpm7.4' with pid 108
2022-04-07 10:56:27,525 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:56:27,525 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:56:28,529 INFO spawned: 'php-fpm7.4' with pid 109
2022-04-07 10:56:29,552 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:56:29,552 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:56:30,555 INFO spawned: 'php-fpm7.4' with pid 110
2022-04-07 10:56:31,581 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:56:31,581 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:56:32,585 INFO spawned: 'php-fpm7.4' with pid 111
2022-04-07 10:56:33,606 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:56:33,607 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:56:34,610 INFO spawned: 'php-fpm7.4' with pid 112
2022-04-07 10:56:35,643 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:56:35,643 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:56:36,646 INFO spawned: 'php-fpm7.4' with pid 113
2022-04-07 10:56:37,678 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:56:37,679 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:56:38,683 INFO spawned: 'php-fpm7.4' with pid 114
2022-04-07 10:56:39,712 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:56:39,713 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:56:40,716 INFO spawned: 'php-fpm7.4' with pid 115
2022-04-07 10:56:41,748 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:56:41,749 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:56:42,752 INFO spawned: 'php-fpm7.4' with pid 116
2022-04-07 10:56:43,786 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:56:43,786 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:56:44,789 INFO spawned: 'php-fpm7.4' with pid 117
2022-04-07 10:56:45,821 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:56:45,821 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:56:46,825 INFO spawned: 'php-fpm7.4' with pid 118
2022-04-07 10:56:47,857 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:56:47,858 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:56:48,860 INFO spawned: 'php-fpm7.4' with pid 119
2022-04-07 10:56:49,881 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:56:49,882 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:56:50,885 INFO spawned: 'php-fpm7.4' with pid 120
2022-04-07 10:56:51,910 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:56:51,910 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:56:52,913 INFO spawned: 'php-fpm7.4' with pid 121
2022-04-07 10:56:53,943 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:56:53,943 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:56:54,947 INFO spawned: 'php-fpm7.4' with pid 122
2022-04-07 10:56:55,968 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:56:55,969 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:56:56,973 INFO spawned: 'php-fpm7.4' with pid 123
2022-04-07 10:56:57,994 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:56:57,994 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:56:59,005 INFO spawned: 'php-fpm7.4' with pid 124
2022-04-07 10:57:00,037 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:57:00,037 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:57:01,041 INFO spawned: 'php-fpm7.4' with pid 125
2022-04-07 10:57:02,075 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:57:02,075 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:57:03,078 INFO spawned: 'php-fpm7.4' with pid 126
2022-04-07 10:57:04,099 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:57:04,099 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:57:05,103 INFO spawned: 'php-fpm7.4' with pid 127
2022-04-07 10:57:06,127 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:57:06,127 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:57:07,131 INFO spawned: 'php-fpm7.4' with pid 128
2022-04-07 10:57:08,163 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:57:08,163 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:57:09,166 INFO spawned: 'php-fpm7.4' with pid 129
2022-04-07 10:57:10,198 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:57:10,198 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:57:11,202 INFO spawned: 'php-fpm7.4' with pid 130
2022-04-07 10:57:12,224 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:57:12,224 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:57:13,228 INFO spawned: 'php-fpm7.4' with pid 131
2022-04-07 10:57:14,260 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:57:14,260 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:57:15,264 INFO spawned: 'php-fpm7.4' with pid 132
2022-04-07 10:57:16,285 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:57:16,286 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 10:57:17,289 INFO spawned: 'php-fpm7.4' with pid 133
2022-04-07 10:57:18,309 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 10:57:18,309 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 11:00:29,229 CRIT Supervisor is running as root. Privileges were not dropped because no user is specified in the config file. If you intend to run as root, you can set user=root in the config file to avoid this message.
2022-04-07 11:00:29,231 INFO RPC interface 'supervisor' initialized
2022-04-07 11:00:29,231 CRIT Server 'unix_http_server' running without any HTTP authentication checking
2022-04-07 11:00:29,231 INFO supervisord started with pid 28
2022-04-07 11:00:30,234 INFO spawned: 'apache2' with pid 30
2022-04-07 11:00:30,236 INFO spawned: 'php-fpm7.4' with pid 31
2022-04-07 11:00:30,243 INFO spawned: 'rsyslog' with pid 41
2022-04-07 11:00:31,256 INFO success: apache2 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:00:31,256 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:00:31,256 INFO success: rsyslog entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:00:31,256 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 11:00:32,260 INFO spawned: 'php-fpm7.4' with pid 104
2022-04-07 11:00:33,282 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:00:33,283 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 11:00:34,286 INFO spawned: 'php-fpm7.4' with pid 105
2022-04-07 11:00:35,313 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:00:35,313 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 11:00:36,323 INFO spawned: 'php-fpm7.4' with pid 106
2022-04-07 11:00:37,358 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:00:37,359 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 11:00:38,362 INFO spawned: 'php-fpm7.4' with pid 107
2022-04-07 11:00:39,395 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:00:39,395 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 11:00:40,398 INFO spawned: 'php-fpm7.4' with pid 108
2022-04-07 11:00:41,430 INFO success: php-fpm7.4 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:00:41,430 INFO exited: php-fpm7.4 (exit status 78; not expected)
2022-04-07 11:03:32,099 CRIT Supervisor is running as root. Privileges were not dropped because no user is specified in the config file. If you intend to run as root, you can set user=root in the config file to avoid this message.
2022-04-07 11:03:32,101 INFO RPC interface 'supervisor' initialized
2022-04-07 11:03:32,101 CRIT Server 'unix_http_server' running without any HTTP authentication checking
2022-04-07 11:03:32,101 INFO supervisord started with pid 28
2022-04-07 11:03:33,105 INFO spawned: 'apache2' with pid 30
2022-04-07 11:03:33,107 INFO spawned: 'php-fpm8.1' with pid 31
2022-04-07 11:03:33,109 INFO spawned: 'rsyslog' with pid 32
2022-04-07 11:03:34,142 INFO success: apache2 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:03:34,142 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:03:34,142 INFO success: rsyslog entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:03:34,142 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:03:35,146 INFO spawned: 'php-fpm8.1' with pid 104
2022-04-07 11:03:36,180 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:03:36,180 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:03:37,184 INFO spawned: 'php-fpm8.1' with pid 105
2022-04-07 11:03:38,207 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:03:38,207 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:03:39,210 INFO spawned: 'php-fpm8.1' with pid 106
2022-04-07 11:03:40,242 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:03:40,243 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:03:41,246 INFO spawned: 'php-fpm8.1' with pid 107
2022-04-07 11:03:42,269 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:03:42,269 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:03:43,272 INFO spawned: 'php-fpm8.1' with pid 108
2022-04-07 11:03:44,294 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:03:44,294 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:03:45,296 INFO spawned: 'php-fpm8.1' with pid 109
2022-04-07 11:03:46,320 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:03:46,320 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:03:47,324 INFO spawned: 'php-fpm8.1' with pid 110
2022-04-07 11:03:48,346 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:03:48,347 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:03:49,350 INFO spawned: 'php-fpm8.1' with pid 111
2022-04-07 11:03:50,371 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:03:50,371 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:03:51,374 INFO spawned: 'php-fpm8.1' with pid 112
2022-04-07 11:03:52,396 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:03:52,396 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:03:53,400 INFO spawned: 'php-fpm8.1' with pid 113
2022-04-07 11:03:54,433 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:03:54,433 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:03:55,436 INFO spawned: 'php-fpm8.1' with pid 114
2022-04-07 11:03:56,469 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:03:56,469 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:03:57,472 INFO spawned: 'php-fpm8.1' with pid 115
2022-04-07 11:03:58,494 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:03:58,495 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:03:59,498 INFO spawned: 'php-fpm8.1' with pid 116
2022-04-07 11:04:00,523 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:04:00,523 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:04:01,526 INFO spawned: 'php-fpm8.1' with pid 117
2022-04-07 11:04:02,559 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:04:02,559 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:04:03,562 INFO spawned: 'php-fpm8.1' with pid 118
2022-04-07 11:04:04,594 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:04:04,595 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:04:05,598 INFO spawned: 'php-fpm8.1' with pid 119
2022-04-07 11:04:06,630 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:04:06,631 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:04:07,635 INFO spawned: 'php-fpm8.1' with pid 120
2022-04-07 11:04:08,671 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:04:08,671 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:04:16,457 CRIT Supervisor is running as root. Privileges were not dropped because no user is specified in the config file. If you intend to run as root, you can set user=root in the config file to avoid this message.
2022-04-07 11:04:16,459 INFO RPC interface 'supervisor' initialized
2022-04-07 11:04:16,459 CRIT Server 'unix_http_server' running without any HTTP authentication checking
2022-04-07 11:04:16,459 INFO supervisord started with pid 28
2022-04-07 11:04:17,463 INFO spawned: 'apache2' with pid 30
2022-04-07 11:04:17,466 INFO spawned: 'php-fpm8.1' with pid 31
2022-04-07 11:04:17,467 INFO spawned: 'rsyslog' with pid 32
2022-04-07 11:04:18,495 INFO success: apache2 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:04:18,495 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:04:18,495 INFO success: rsyslog entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:04:18,496 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:04:19,499 INFO spawned: 'php-fpm8.1' with pid 104
2022-04-07 11:04:20,522 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:04:20,523 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:04:21,526 INFO spawned: 'php-fpm8.1' with pid 105
2022-04-07 11:04:22,551 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:04:22,552 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:04:23,555 INFO spawned: 'php-fpm8.1' with pid 106
2022-04-07 11:04:24,588 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:04:24,588 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:04:25,591 INFO spawned: 'php-fpm8.1' with pid 107
2022-04-07 11:04:26,614 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:04:26,614 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:04:27,618 INFO spawned: 'php-fpm8.1' with pid 108
2022-04-07 11:04:28,642 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:04:28,642 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:04:29,646 INFO spawned: 'php-fpm8.1' with pid 109
2022-04-07 11:04:30,678 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:04:30,679 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:04:31,682 INFO spawned: 'php-fpm8.1' with pid 110
2022-04-07 11:04:32,715 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:04:32,715 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:04:33,719 INFO spawned: 'php-fpm8.1' with pid 111
2022-04-07 11:04:34,742 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:04:34,742 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:04:35,746 INFO spawned: 'php-fpm8.1' with pid 112
2022-04-07 11:04:36,770 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:04:36,770 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:04:37,772 INFO spawned: 'php-fpm8.1' with pid 113
2022-04-07 11:04:38,806 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:04:38,806 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:04:39,810 INFO spawned: 'php-fpm8.1' with pid 114
2022-04-07 11:04:40,843 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:04:40,843 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:04:41,847 INFO spawned: 'php-fpm8.1' with pid 115
2022-04-07 11:04:42,868 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:04:42,869 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:04:43,872 INFO spawned: 'php-fpm8.1' with pid 116
2022-04-07 11:04:44,904 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:04:44,904 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:04:45,907 INFO spawned: 'php-fpm8.1' with pid 117
2022-04-07 11:04:46,939 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:04:46,940 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:04:47,943 INFO spawned: 'php-fpm8.1' with pid 118
2022-04-07 11:04:48,977 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:04:48,977 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:04:49,980 INFO spawned: 'php-fpm8.1' with pid 119
2022-04-07 11:04:51,002 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:04:51,002 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:04:52,005 INFO spawned: 'php-fpm8.1' with pid 120
2022-04-07 11:04:53,029 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:04:53,029 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:04:54,032 INFO spawned: 'php-fpm8.1' with pid 121
2022-04-07 11:04:55,059 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:04:55,059 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:04:56,062 INFO spawned: 'php-fpm8.1' with pid 122
2022-04-07 11:04:57,084 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:04:57,085 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:04:58,087 INFO spawned: 'php-fpm8.1' with pid 123
2022-04-07 11:04:59,111 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:04:59,112 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:05:00,115 INFO spawned: 'php-fpm8.1' with pid 124
2022-04-07 11:05:01,138 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:05:01,138 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:05:02,142 INFO spawned: 'php-fpm8.1' with pid 125
2022-04-07 11:05:03,178 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:05:03,178 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:05:04,181 INFO spawned: 'php-fpm8.1' with pid 126
2022-04-07 11:05:05,217 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:05:05,218 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:05:06,221 INFO spawned: 'php-fpm8.1' with pid 127
2022-04-07 11:05:07,255 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:05:07,255 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:05:08,257 INFO spawned: 'php-fpm8.1' with pid 128
2022-04-07 11:05:09,279 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:05:09,279 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:05:10,283 INFO spawned: 'php-fpm8.1' with pid 129
2022-04-07 11:05:11,319 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:05:11,319 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:05:12,323 INFO spawned: 'php-fpm8.1' with pid 130
2022-04-07 11:05:13,358 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:05:13,359 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:05:14,363 INFO spawned: 'php-fpm8.1' with pid 131
2022-04-07 11:05:15,397 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:05:15,397 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:05:16,400 INFO spawned: 'php-fpm8.1' with pid 132
2022-04-07 11:05:17,437 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:05:17,438 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:05:18,441 INFO spawned: 'php-fpm8.1' with pid 133
2022-04-07 11:05:19,462 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:05:19,463 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:05:20,466 INFO spawned: 'php-fpm8.1' with pid 134
2022-04-07 11:05:21,502 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:05:21,502 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:05:22,504 INFO spawned: 'php-fpm8.1' with pid 135
2022-04-07 11:05:23,533 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:05:23,534 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:05:24,536 INFO spawned: 'php-fpm8.1' with pid 136
2022-04-07 11:05:25,560 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:05:25,560 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:05:26,564 INFO spawned: 'php-fpm8.1' with pid 137
2022-04-07 11:05:27,594 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:05:27,594 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:05:28,598 INFO spawned: 'php-fpm8.1' with pid 138
2022-04-07 11:05:29,630 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:05:29,631 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:05:30,633 INFO spawned: 'php-fpm8.1' with pid 139
2022-04-07 11:05:31,655 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:05:31,655 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:05:32,658 INFO spawned: 'php-fpm8.1' with pid 140
2022-04-07 11:05:33,692 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:05:33,692 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:05:34,696 INFO spawned: 'php-fpm8.1' with pid 141
2022-04-07 11:05:35,720 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:05:35,720 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:05:36,724 INFO spawned: 'php-fpm8.1' with pid 142
2022-04-07 11:05:37,745 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:05:37,745 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:05:38,756 INFO spawned: 'php-fpm8.1' with pid 143
2022-04-07 11:05:39,777 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:05:39,777 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:05:40,781 INFO spawned: 'php-fpm8.1' with pid 144
2022-04-07 11:05:41,813 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:05:41,814 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:05:42,817 INFO spawned: 'php-fpm8.1' with pid 145
2022-04-07 11:05:43,850 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:05:43,851 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:05:44,854 INFO spawned: 'php-fpm8.1' with pid 146
2022-04-07 11:05:45,887 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:05:45,887 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:05:46,890 INFO spawned: 'php-fpm8.1' with pid 147
2022-04-07 11:05:47,924 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:05:47,924 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:05:48,928 INFO spawned: 'php-fpm8.1' with pid 148
2022-04-07 11:05:49,949 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:05:49,950 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:05:50,952 INFO spawned: 'php-fpm8.1' with pid 149
2022-04-07 11:05:51,977 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:05:51,977 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:05:52,981 INFO spawned: 'php-fpm8.1' with pid 150
2022-04-07 11:05:54,014 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:05:54,015 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:05:55,018 INFO spawned: 'php-fpm8.1' with pid 151
2022-04-07 11:05:56,040 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:05:56,040 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:05:57,044 INFO spawned: 'php-fpm8.1' with pid 152
2022-04-07 11:05:58,065 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:05:58,065 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:05:59,068 INFO spawned: 'php-fpm8.1' with pid 153
2022-04-07 11:06:00,100 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:06:00,100 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:06:01,104 INFO spawned: 'php-fpm8.1' with pid 154
2022-04-07 11:06:02,126 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:06:02,127 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:06:03,130 INFO spawned: 'php-fpm8.1' with pid 155
2022-04-07 11:06:04,163 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:06:04,163 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:06:05,166 INFO spawned: 'php-fpm8.1' with pid 156
2022-04-07 11:06:06,199 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:06:06,199 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:06:07,202 INFO spawned: 'php-fpm8.1' with pid 157
2022-04-07 11:06:08,238 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:06:08,238 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:06:09,241 INFO spawned: 'php-fpm8.1' with pid 158
2022-04-07 11:06:10,265 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:06:10,265 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:06:11,268 INFO spawned: 'php-fpm8.1' with pid 159
2022-04-07 11:06:12,290 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:06:12,291 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:06:13,294 INFO spawned: 'php-fpm8.1' with pid 160
2022-04-07 11:06:14,327 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:06:14,327 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:06:15,331 INFO spawned: 'php-fpm8.1' with pid 161
2022-04-07 11:06:16,364 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:06:16,364 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:06:17,368 INFO spawned: 'php-fpm8.1' with pid 162
2022-04-07 11:06:18,399 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:06:18,399 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:06:19,402 INFO spawned: 'php-fpm8.1' with pid 163
2022-04-07 11:06:20,435 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:06:20,435 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:06:21,438 INFO spawned: 'php-fpm8.1' with pid 164
2022-04-07 11:06:22,461 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:06:22,461 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:06:23,464 INFO spawned: 'php-fpm8.1' with pid 165
2022-04-07 11:06:24,487 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:06:24,487 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:06:25,490 INFO spawned: 'php-fpm8.1' with pid 166
2022-04-07 11:06:26,526 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:06:26,526 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:06:27,530 INFO spawned: 'php-fpm8.1' with pid 167
2022-04-07 11:06:28,553 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:06:28,554 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:06:29,566 INFO spawned: 'php-fpm8.1' with pid 168
2022-04-07 11:06:30,600 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:06:30,600 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:06:31,604 INFO spawned: 'php-fpm8.1' with pid 169
2022-04-07 11:06:32,627 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:06:32,627 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:06:33,631 INFO spawned: 'php-fpm8.1' with pid 170
2022-04-07 11:06:34,664 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:06:34,664 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:06:35,668 INFO spawned: 'php-fpm8.1' with pid 171
2022-04-07 11:06:36,702 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:06:36,703 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:06:37,706 INFO spawned: 'php-fpm8.1' with pid 172
2022-04-07 11:06:38,740 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:06:38,740 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:06:39,743 INFO spawned: 'php-fpm8.1' with pid 173
2022-04-07 11:06:40,779 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:06:40,779 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:06:41,782 INFO spawned: 'php-fpm8.1' with pid 174
2022-04-07 11:06:42,804 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:06:42,805 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:06:43,808 INFO spawned: 'php-fpm8.1' with pid 175
2022-04-07 11:06:44,833 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:06:44,833 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:06:45,836 INFO spawned: 'php-fpm8.1' with pid 176
2022-04-07 11:06:46,857 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:06:46,857 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:06:47,863 INFO spawned: 'php-fpm8.1' with pid 177
2022-04-07 11:06:48,895 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:06:48,895 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:06:49,899 INFO spawned: 'php-fpm8.1' with pid 178
2022-04-07 11:06:50,922 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:06:50,923 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:06:51,926 INFO spawned: 'php-fpm8.1' with pid 179
2022-04-07 11:06:52,960 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:06:52,960 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:06:53,963 INFO spawned: 'php-fpm8.1' with pid 180
2022-04-07 11:06:54,995 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:06:54,995 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:06:55,998 INFO spawned: 'php-fpm8.1' with pid 181
2022-04-07 11:06:57,031 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:06:57,031 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:06:58,034 INFO spawned: 'php-fpm8.1' with pid 182
2022-04-07 11:06:59,059 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:06:59,060 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:07:00,063 INFO spawned: 'php-fpm8.1' with pid 183
2022-04-07 11:07:01,097 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:07:01,097 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:07:02,100 INFO spawned: 'php-fpm8.1' with pid 184
2022-04-07 11:07:03,134 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:07:03,135 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:07:04,138 INFO spawned: 'php-fpm8.1' with pid 185
2022-04-07 11:07:05,165 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:07:05,166 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:07:06,168 INFO spawned: 'php-fpm8.1' with pid 186
2022-04-07 11:07:07,204 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:07:07,204 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:07:08,208 INFO spawned: 'php-fpm8.1' with pid 187
2022-04-07 11:07:09,232 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:07:09,232 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:07:10,236 INFO spawned: 'php-fpm8.1' with pid 188
2022-04-07 11:07:11,269 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:07:11,269 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:07:12,272 INFO spawned: 'php-fpm8.1' with pid 189
2022-04-07 11:07:13,303 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:07:13,304 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:07:14,307 INFO spawned: 'php-fpm8.1' with pid 190
2022-04-07 11:07:15,331 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:07:15,331 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:07:16,334 INFO spawned: 'php-fpm8.1' with pid 191
2022-04-07 11:07:17,365 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:07:17,366 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:07:18,376 INFO spawned: 'php-fpm8.1' with pid 192
2022-04-07 11:07:19,406 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:07:19,407 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:07:20,410 INFO spawned: 'php-fpm8.1' with pid 193
2022-04-07 11:07:21,446 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:07:21,446 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:07:22,449 INFO spawned: 'php-fpm8.1' with pid 194
2022-04-07 11:07:23,477 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:07:23,478 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:07:24,480 INFO spawned: 'php-fpm8.1' with pid 195
2022-04-07 11:07:25,516 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:07:25,516 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:07:26,518 INFO spawned: 'php-fpm8.1' with pid 196
2022-04-07 11:07:27,542 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:07:27,542 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:07:28,545 INFO spawned: 'php-fpm8.1' with pid 197
2022-04-07 11:07:29,580 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:07:29,580 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:07:30,582 INFO spawned: 'php-fpm8.1' with pid 198
2022-04-07 11:07:31,604 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:07:31,605 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:07:32,608 INFO spawned: 'php-fpm8.1' with pid 199
2022-04-07 11:07:33,644 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:07:33,644 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:07:34,647 INFO spawned: 'php-fpm8.1' with pid 200
2022-04-07 11:07:35,680 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:07:35,680 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:07:36,683 INFO spawned: 'php-fpm8.1' with pid 201
2022-04-07 11:07:37,706 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:07:37,706 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:07:38,710 INFO spawned: 'php-fpm8.1' with pid 202
2022-04-07 11:07:39,744 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:07:39,744 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:07:40,749 INFO spawned: 'php-fpm8.1' with pid 203
2022-04-07 11:07:41,784 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:07:41,784 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:07:42,787 INFO spawned: 'php-fpm8.1' with pid 204
2022-04-07 11:07:43,821 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:07:43,821 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:07:44,825 INFO spawned: 'php-fpm8.1' with pid 205
2022-04-07 11:07:45,848 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:07:45,848 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:07:46,852 INFO spawned: 'php-fpm8.1' with pid 206
2022-04-07 11:07:47,889 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:07:47,890 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:07:48,892 INFO spawned: 'php-fpm8.1' with pid 207
2022-04-07 11:07:49,912 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:07:49,912 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:07:50,916 INFO spawned: 'php-fpm8.1' with pid 208
2022-04-07 11:07:51,938 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:07:51,938 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:07:52,942 INFO spawned: 'php-fpm8.1' with pid 209
2022-04-07 11:07:53,963 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:07:53,963 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:07:54,966 INFO spawned: 'php-fpm8.1' with pid 210
2022-04-07 11:07:55,990 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:07:55,990 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:07:56,993 INFO spawned: 'php-fpm8.1' with pid 211
2022-04-07 11:07:58,014 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:07:58,015 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:07:59,018 INFO spawned: 'php-fpm8.1' with pid 212
2022-04-07 11:08:00,041 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:08:00,042 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:08:01,045 INFO spawned: 'php-fpm8.1' with pid 213
2022-04-07 11:08:02,066 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:08:02,067 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:08:03,070 INFO spawned: 'php-fpm8.1' with pid 214
2022-04-07 11:08:04,102 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:08:04,102 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:08:05,106 INFO spawned: 'php-fpm8.1' with pid 215
2022-04-07 11:08:06,139 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:08:06,140 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:08:07,143 INFO spawned: 'php-fpm8.1' with pid 216
2022-04-07 11:08:08,166 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:08:08,166 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:08:09,170 INFO spawned: 'php-fpm8.1' with pid 217
2022-04-07 11:08:10,205 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:08:10,205 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:08:11,208 INFO spawned: 'php-fpm8.1' with pid 218
2022-04-07 11:08:12,231 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:08:12,232 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:08:13,235 INFO spawned: 'php-fpm8.1' with pid 219
2022-04-07 11:08:14,258 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:08:14,258 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:08:15,269 INFO spawned: 'php-fpm8.1' with pid 220
2022-04-07 11:08:16,291 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:08:16,291 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:08:17,295 INFO spawned: 'php-fpm8.1' with pid 221
2022-04-07 11:08:18,316 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:08:18,317 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:08:19,320 INFO spawned: 'php-fpm8.1' with pid 222
2022-04-07 11:08:20,343 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:08:20,344 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:08:21,347 INFO spawned: 'php-fpm8.1' with pid 223
2022-04-07 11:08:22,371 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:08:22,371 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:08:23,374 INFO spawned: 'php-fpm8.1' with pid 224
2022-04-07 11:08:24,397 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:08:24,398 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:08:25,401 INFO spawned: 'php-fpm8.1' with pid 225
2022-04-07 11:08:26,429 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:08:26,429 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:08:27,432 INFO spawned: 'php-fpm8.1' with pid 226
2022-04-07 11:08:28,452 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:08:28,453 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:08:29,456 INFO spawned: 'php-fpm8.1' with pid 227
2022-04-07 11:08:30,479 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:08:30,479 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:08:31,482 INFO spawned: 'php-fpm8.1' with pid 228
2022-04-07 11:08:32,505 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:08:32,506 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:08:33,509 INFO spawned: 'php-fpm8.1' with pid 229
2022-04-07 11:08:34,532 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:08:34,532 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:08:35,535 INFO spawned: 'php-fpm8.1' with pid 230
2022-04-07 11:08:36,568 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:08:36,568 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:08:37,572 INFO spawned: 'php-fpm8.1' with pid 231
2022-04-07 11:08:38,603 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:08:38,603 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:08:39,607 INFO spawned: 'php-fpm8.1' with pid 232
2022-04-07 11:08:40,629 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:08:40,629 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:08:41,632 INFO spawned: 'php-fpm8.1' with pid 233
2022-04-07 11:08:42,663 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:08:42,663 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:08:43,666 INFO spawned: 'php-fpm8.1' with pid 234
2022-04-07 11:08:44,699 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:08:44,699 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:08:45,702 INFO spawned: 'php-fpm8.1' with pid 235
2022-04-07 11:08:46,736 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:08:46,737 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:08:47,747 INFO spawned: 'php-fpm8.1' with pid 236
2022-04-07 11:08:48,780 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:08:48,780 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:08:49,784 INFO spawned: 'php-fpm8.1' with pid 237
2022-04-07 11:08:50,807 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:08:50,807 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:08:51,811 INFO spawned: 'php-fpm8.1' with pid 238
2022-04-07 11:08:52,844 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:08:52,845 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:08:53,848 INFO spawned: 'php-fpm8.1' with pid 239
2022-04-07 11:08:54,882 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:08:54,882 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:08:55,886 INFO spawned: 'php-fpm8.1' with pid 240
2022-04-07 11:08:56,909 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:08:56,909 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:08:57,912 INFO spawned: 'php-fpm8.1' with pid 241
2022-04-07 11:08:58,944 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:08:58,944 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:08:59,948 INFO spawned: 'php-fpm8.1' with pid 242
2022-04-07 11:09:00,969 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:09:00,970 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:09:01,972 INFO spawned: 'php-fpm8.1' with pid 243
2022-04-07 11:09:02,997 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:09:02,998 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:09:04,000 INFO spawned: 'php-fpm8.1' with pid 244
2022-04-07 11:09:05,030 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:09:05,030 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:09:06,033 INFO spawned: 'php-fpm8.1' with pid 245
2022-04-07 11:09:07,065 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:09:07,066 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:09:08,068 INFO spawned: 'php-fpm8.1' with pid 246
2022-04-07 11:09:09,092 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:09:09,092 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:09:10,096 INFO spawned: 'php-fpm8.1' with pid 247
2022-04-07 11:09:11,129 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:09:11,130 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:09:12,133 INFO spawned: 'php-fpm8.1' with pid 248
2022-04-07 11:09:13,156 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:09:13,156 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:09:14,160 INFO spawned: 'php-fpm8.1' with pid 249
2022-04-07 11:09:15,194 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:09:15,194 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:09:16,198 INFO spawned: 'php-fpm8.1' with pid 250
2022-04-07 11:09:17,230 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:09:17,230 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:09:18,232 INFO spawned: 'php-fpm8.1' with pid 251
2022-04-07 11:09:19,264 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:09:19,265 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:09:20,268 INFO spawned: 'php-fpm8.1' with pid 252
2022-04-07 11:09:21,300 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:09:21,300 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:09:22,304 INFO spawned: 'php-fpm8.1' with pid 253
2022-04-07 11:09:23,335 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:09:23,335 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:09:24,338 INFO spawned: 'php-fpm8.1' with pid 254
2022-04-07 11:09:25,359 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:09:25,359 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:09:26,363 INFO spawned: 'php-fpm8.1' with pid 255
2022-04-07 11:09:27,394 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:09:27,394 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:09:32,602 CRIT Supervisor is running as root. Privileges were not dropped because no user is specified in the config file. If you intend to run as root, you can set user=root in the config file to avoid this message.
2022-04-07 11:09:32,604 INFO RPC interface 'supervisor' initialized
2022-04-07 11:09:32,604 CRIT Server 'unix_http_server' running without any HTTP authentication checking
2022-04-07 11:09:32,605 INFO supervisord started with pid 29
2022-04-07 11:09:33,608 INFO spawned: 'apache2' with pid 31
2022-04-07 11:09:33,611 INFO spawned: 'php-fpm8.1' with pid 32
2022-04-07 11:09:33,613 INFO spawned: 'rsyslog' with pid 33
2022-04-07 11:09:34,637 INFO success: apache2 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:09:34,637 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:09:34,637 INFO success: rsyslog entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:09:34,637 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:09:35,641 INFO spawned: 'php-fpm8.1' with pid 105
2022-04-07 11:09:36,676 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:09:36,676 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:09:37,679 INFO spawned: 'php-fpm8.1' with pid 106
2022-04-07 11:09:38,711 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:09:38,711 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:09:39,720 INFO spawned: 'php-fpm8.1' with pid 107
2022-04-07 11:09:40,744 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:09:40,744 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:09:41,748 INFO spawned: 'php-fpm8.1' with pid 108
2022-04-07 11:09:42,770 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:09:42,771 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:09:43,774 INFO spawned: 'php-fpm8.1' with pid 109
2022-04-07 11:09:44,800 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:09:44,800 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:09:45,804 INFO spawned: 'php-fpm8.1' with pid 110
2022-04-07 11:09:46,836 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:09:46,836 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:09:47,840 INFO spawned: 'php-fpm8.1' with pid 111
2022-04-07 11:09:48,862 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:09:48,862 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:09:49,866 INFO spawned: 'php-fpm8.1' with pid 112
2022-04-07 11:09:50,889 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:09:50,890 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:09:51,893 INFO spawned: 'php-fpm8.1' with pid 113
2022-04-07 11:09:52,925 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:09:52,926 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:09:53,929 INFO spawned: 'php-fpm8.1' with pid 114
2022-04-07 11:09:54,962 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:09:54,962 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:09:55,966 INFO spawned: 'php-fpm8.1' with pid 115
2022-04-07 11:09:56,989 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:09:56,989 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:09:57,992 INFO spawned: 'php-fpm8.1' with pid 116
2022-04-07 11:09:59,016 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:09:59,016 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:10:00,019 INFO spawned: 'php-fpm8.1' with pid 117
2022-04-07 11:10:01,051 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:10:01,051 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:10:02,054 INFO spawned: 'php-fpm8.1' with pid 118
2022-04-07 11:10:03,077 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:10:03,077 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:10:04,080 INFO spawned: 'php-fpm8.1' with pid 119
2022-04-07 11:10:05,116 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:10:05,116 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:10:06,120 INFO spawned: 'php-fpm8.1' with pid 120
2022-04-07 11:10:07,153 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:10:07,153 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:10:08,155 INFO spawned: 'php-fpm8.1' with pid 121
2022-04-07 11:10:09,190 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:10:09,190 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:10:10,194 INFO spawned: 'php-fpm8.1' with pid 122
2022-04-07 11:10:11,217 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:10:11,217 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:10:12,220 INFO spawned: 'php-fpm8.1' with pid 123
2022-04-07 11:10:13,243 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:10:13,244 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:10:14,247 INFO spawned: 'php-fpm8.1' with pid 124
2022-04-07 11:10:15,271 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:10:15,271 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:10:16,274 INFO spawned: 'php-fpm8.1' with pid 125
2022-04-07 11:10:17,297 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:10:17,297 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:10:18,301 INFO spawned: 'php-fpm8.1' with pid 126
2022-04-07 11:10:19,334 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:10:19,335 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:10:20,338 INFO spawned: 'php-fpm8.1' with pid 134
2022-04-07 11:10:21,361 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:10:21,362 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:10:22,365 INFO spawned: 'php-fpm8.1' with pid 135
2022-04-07 11:10:23,387 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:10:23,387 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:10:24,391 INFO spawned: 'php-fpm8.1' with pid 136
2022-04-07 11:10:25,415 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:10:25,415 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:10:26,418 INFO spawned: 'php-fpm8.1' with pid 137
2022-04-07 11:10:27,442 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:10:27,442 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:10:28,445 INFO spawned: 'php-fpm8.1' with pid 138
2022-04-07 11:10:29,468 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:10:29,469 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:10:30,472 INFO spawned: 'php-fpm8.1' with pid 141
2022-04-07 11:10:31,504 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:10:31,505 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:10:32,508 INFO spawned: 'php-fpm8.1' with pid 142
2022-04-07 11:10:33,537 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:10:33,537 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:10:34,540 INFO spawned: 'php-fpm8.1' with pid 143
2022-04-07 11:10:35,563 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:10:35,563 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:10:36,567 INFO spawned: 'php-fpm8.1' with pid 144
2022-04-07 11:10:37,599 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:10:37,599 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:10:38,602 INFO spawned: 'php-fpm8.1' with pid 147
2022-04-07 11:10:39,625 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:10:39,625 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:10:40,628 INFO spawned: 'php-fpm8.1' with pid 148
2022-04-07 11:10:41,660 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:10:41,661 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:10:42,665 INFO spawned: 'php-fpm8.1' with pid 149
2022-04-07 11:10:43,687 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:10:43,687 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:10:44,693 INFO spawned: 'php-fpm8.1' with pid 150
2022-04-07 11:10:45,724 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:10:45,724 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:10:46,728 INFO spawned: 'php-fpm8.1' with pid 151
2022-04-07 11:10:46,760 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:10:47,763 INFO spawned: 'php-fpm8.1' with pid 152
2022-04-07 11:10:48,798 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:10:48,799 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:10:49,802 INFO spawned: 'php-fpm8.1' with pid 153
2022-04-07 11:10:50,824 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:10:50,825 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:10:51,828 INFO spawned: 'php-fpm8.1' with pid 154
2022-04-07 11:10:52,850 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:10:52,851 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:10:53,854 INFO spawned: 'php-fpm8.1' with pid 155
2022-04-07 11:10:54,888 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:10:54,888 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:10:55,891 INFO spawned: 'php-fpm8.1' with pid 156
2022-04-07 11:10:56,914 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:10:56,914 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:10:57,918 INFO spawned: 'php-fpm8.1' with pid 165
2022-04-07 11:10:58,940 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:10:58,940 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:10:59,944 INFO spawned: 'php-fpm8.1' with pid 166
2022-04-07 11:11:00,965 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:11:00,966 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:11:01,968 INFO spawned: 'php-fpm8.1' with pid 167
2022-04-07 11:11:02,994 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:11:02,994 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:11:03,998 INFO spawned: 'php-fpm8.1' with pid 168
2022-04-07 11:11:05,020 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:11:05,020 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:11:06,030 INFO spawned: 'php-fpm8.1' with pid 169
2022-04-07 11:11:07,052 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:11:07,052 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:11:08,056 INFO spawned: 'php-fpm8.1' with pid 170
2022-04-07 11:11:09,078 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:11:09,079 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:11:10,082 INFO spawned: 'php-fpm8.1' with pid 171
2022-04-07 11:11:11,103 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:11:11,104 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:11:12,107 INFO spawned: 'php-fpm8.1' with pid 172
2022-04-07 11:11:13,131 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:11:13,131 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:11:14,135 INFO spawned: 'php-fpm8.1' with pid 173
2022-04-07 11:11:15,169 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:11:15,169 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:11:16,173 INFO spawned: 'php-fpm8.1' with pid 174
2022-04-07 11:11:17,195 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:11:17,195 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:11:18,198 INFO spawned: 'php-fpm8.1' with pid 176
2022-04-07 11:11:19,220 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:11:19,220 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:11:20,224 INFO spawned: 'php-fpm8.1' with pid 177
2022-04-07 11:11:21,245 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:11:21,245 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:11:22,249 INFO spawned: 'php-fpm8.1' with pid 178
2022-04-07 11:11:23,271 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:11:23,271 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:11:24,275 INFO spawned: 'php-fpm8.1' with pid 179
2022-04-07 11:11:25,309 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:11:25,309 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:11:26,312 INFO spawned: 'php-fpm8.1' with pid 180
2022-04-07 11:11:27,335 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:11:27,335 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:11:28,338 INFO spawned: 'php-fpm8.1' with pid 181
2022-04-07 11:11:29,362 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:11:29,363 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:11:30,366 INFO spawned: 'php-fpm8.1' with pid 182
2022-04-07 11:11:31,390 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:11:31,390 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:11:32,393 INFO spawned: 'php-fpm8.1' with pid 183
2022-04-07 11:11:33,418 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:11:33,418 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:11:34,420 INFO spawned: 'php-fpm8.1' with pid 184
2022-04-07 11:11:35,441 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:11:35,442 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:11:36,444 INFO spawned: 'php-fpm8.1' with pid 185
2022-04-07 11:11:37,467 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:11:37,468 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:11:38,471 INFO spawned: 'php-fpm8.1' with pid 186
2022-04-07 11:11:39,506 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:11:39,506 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:11:40,510 INFO spawned: 'php-fpm8.1' with pid 187
2022-04-07 11:11:41,537 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:11:41,538 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:11:42,540 INFO spawned: 'php-fpm8.1' with pid 188
2022-04-07 11:11:43,562 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:11:43,562 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:11:44,565 INFO spawned: 'php-fpm8.1' with pid 189
2022-04-07 11:11:45,589 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:11:45,589 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:11:46,592 INFO spawned: 'php-fpm8.1' with pid 190
2022-04-07 11:11:47,613 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:11:47,613 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:11:48,616 INFO spawned: 'php-fpm8.1' with pid 191
2022-04-07 11:11:49,639 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:11:49,639 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:11:50,643 INFO spawned: 'php-fpm8.1' with pid 192
2022-04-07 11:11:51,665 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:11:51,665 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:11:52,668 INFO spawned: 'php-fpm8.1' with pid 204
2022-04-07 11:11:53,691 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:11:53,692 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:11:54,695 INFO spawned: 'php-fpm8.1' with pid 205
2022-04-07 11:11:55,725 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:11:55,725 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:11:56,728 INFO spawned: 'php-fpm8.1' with pid 206
2022-04-07 11:11:57,759 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:11:57,759 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:11:58,763 INFO spawned: 'php-fpm8.1' with pid 214
2022-04-07 11:11:59,783 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:11:59,783 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:12:00,786 INFO spawned: 'php-fpm8.1' with pid 215
2022-04-07 11:12:01,820 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:12:01,820 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:12:02,824 INFO spawned: 'php-fpm8.1' with pid 216
2022-04-07 11:12:03,789 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:12:04,827 INFO spawned: 'php-fpm8.1' with pid 230
2022-04-07 11:12:05,854 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:12:05,855 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:12:06,858 INFO spawned: 'php-fpm8.1' with pid 231
2022-04-07 11:12:07,881 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:12:07,881 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:12:08,884 INFO spawned: 'php-fpm8.1' with pid 232
2022-04-07 11:12:09,907 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:12:09,908 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:12:10,918 INFO spawned: 'php-fpm8.1' with pid 233
2022-04-07 11:12:11,941 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:12:11,942 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:12:12,945 INFO spawned: 'php-fpm8.1' with pid 234
2022-04-07 11:12:13,967 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:12:13,968 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:12:14,971 INFO spawned: 'php-fpm8.1' with pid 235
2022-04-07 11:12:16,008 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:12:16,008 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:12:17,012 INFO spawned: 'php-fpm8.1' with pid 243
2022-04-07 11:12:18,037 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:12:18,038 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:12:19,041 INFO spawned: 'php-fpm8.1' with pid 244
2022-04-07 11:12:20,064 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:12:20,064 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:12:21,067 INFO spawned: 'php-fpm8.1' with pid 245
2022-04-07 11:12:22,091 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:12:22,091 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:12:23,095 INFO spawned: 'php-fpm8.1' with pid 246
2022-04-07 11:12:24,118 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:12:24,119 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:12:25,122 INFO spawned: 'php-fpm8.1' with pid 247
2022-04-07 11:12:26,147 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:12:26,147 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:12:27,150 INFO spawned: 'php-fpm8.1' with pid 248
2022-04-07 11:12:28,173 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:12:28,173 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:12:29,177 INFO spawned: 'php-fpm8.1' with pid 250
2022-04-07 11:12:30,201 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:12:30,201 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:12:31,204 INFO spawned: 'php-fpm8.1' with pid 251
2022-04-07 11:12:32,238 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:12:32,238 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:12:33,241 INFO spawned: 'php-fpm8.1' with pid 252
2022-04-07 11:12:34,263 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:12:34,263 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:12:35,266 INFO spawned: 'php-fpm8.1' with pid 253
2022-04-07 11:12:36,298 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:12:36,299 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:12:37,302 INFO spawned: 'php-fpm8.1' with pid 254
2022-04-07 11:12:38,324 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:12:38,324 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:12:39,328 INFO spawned: 'php-fpm8.1' with pid 255
2022-04-07 11:12:40,359 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:12:40,359 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:12:41,363 INFO spawned: 'php-fpm8.1' with pid 256
2022-04-07 11:12:42,389 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:12:42,389 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:12:43,392 INFO spawned: 'php-fpm8.1' with pid 257
2022-04-07 11:12:44,415 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:12:44,415 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:12:45,418 INFO spawned: 'php-fpm8.1' with pid 258
2022-04-07 11:20:26,976 CRIT Supervisor is running as root. Privileges were not dropped because no user is specified in the config file. If you intend to run as root, you can set user=root in the config file to avoid this message.
2022-04-07 11:20:26,979 INFO RPC interface 'supervisor' initialized
2022-04-07 11:20:26,979 CRIT Server 'unix_http_server' running without any HTTP authentication checking
2022-04-07 11:20:26,979 INFO supervisord started with pid 28
2022-04-07 11:20:27,982 INFO spawned: 'apache2' with pid 30
2022-04-07 11:20:27,985 INFO spawned: 'php-fpm8.1' with pid 31
2022-04-07 11:20:27,987 INFO spawned: 'rsyslog' with pid 32
2022-04-07 11:20:29,010 INFO success: apache2 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:20:29,010 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:20:29,010 INFO success: rsyslog entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:20:29,010 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:20:30,014 INFO spawned: 'php-fpm8.1' with pid 104
2022-04-07 11:20:31,046 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:20:31,046 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:20:32,050 INFO spawned: 'php-fpm8.1' with pid 105
2022-04-07 11:20:33,074 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:20:33,074 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:20:34,077 INFO spawned: 'php-fpm8.1' with pid 106
2022-04-07 11:20:35,103 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:20:35,104 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:20:36,115 INFO spawned: 'php-fpm8.1' with pid 107
2022-04-07 11:20:37,138 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:20:37,139 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:20:38,142 INFO spawned: 'php-fpm8.1' with pid 108
2022-04-07 11:20:39,163 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:20:39,163 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:20:40,166 INFO spawned: 'php-fpm8.1' with pid 109
2022-04-07 11:20:41,190 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:20:41,190 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:20:42,193 INFO spawned: 'php-fpm8.1' with pid 110
2022-04-07 11:20:43,226 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:20:43,226 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:20:44,230 INFO spawned: 'php-fpm8.1' with pid 111
2022-04-07 11:20:45,264 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:20:45,264 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:20:46,268 INFO spawned: 'php-fpm8.1' with pid 112
2022-04-07 11:20:47,300 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:20:47,300 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:20:48,304 INFO spawned: 'php-fpm8.1' with pid 113
2022-04-07 11:20:49,339 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:20:49,339 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:20:50,343 INFO spawned: 'php-fpm8.1' with pid 114
2022-04-07 11:20:51,366 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:20:51,366 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:20:52,370 INFO spawned: 'php-fpm8.1' with pid 115
2022-04-07 11:20:53,402 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:20:53,402 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:20:54,406 INFO spawned: 'php-fpm8.1' with pid 116
2022-04-07 11:20:58,767 CRIT Supervisor is running as root. Privileges were not dropped because no user is specified in the config file. If you intend to run as root, you can set user=root in the config file to avoid this message.
2022-04-07 11:20:58,768 INFO RPC interface 'supervisor' initialized
2022-04-07 11:20:58,769 CRIT Server 'unix_http_server' running without any HTTP authentication checking
2022-04-07 11:20:58,769 INFO supervisord started with pid 28
2022-04-07 11:20:59,772 INFO spawned: 'apache2' with pid 30
2022-04-07 11:20:59,774 INFO spawned: 'php-fpm8.1' with pid 31
2022-04-07 11:20:59,775 INFO spawned: 'rsyslog' with pid 32
2022-04-07 11:21:00,795 INFO success: apache2 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:21:00,795 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:21:00,795 INFO success: rsyslog entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:21:00,795 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:21:01,799 INFO spawned: 'php-fpm8.1' with pid 104
2022-04-07 11:21:02,822 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:21:02,822 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:21:03,826 INFO spawned: 'php-fpm8.1' with pid 105
2022-04-07 11:21:04,859 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:21:04,859 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:21:05,862 INFO spawned: 'php-fpm8.1' with pid 106
2022-04-07 11:21:06,886 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:21:06,886 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:21:07,890 INFO spawned: 'php-fpm8.1' with pid 107
2022-04-07 11:21:08,922 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:21:08,922 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:21:09,926 INFO spawned: 'php-fpm8.1' with pid 108
2022-04-07 11:21:10,958 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:21:10,959 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:21:11,963 INFO spawned: 'php-fpm8.1' with pid 109
2022-04-07 11:21:12,986 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:21:12,986 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:21:13,990 INFO spawned: 'php-fpm8.1' with pid 110
2022-04-07 11:21:15,013 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:21:15,013 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:21:16,016 INFO spawned: 'php-fpm8.1' with pid 111
2022-04-07 11:21:17,049 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:21:17,049 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:21:18,053 INFO spawned: 'php-fpm8.1' with pid 112
2022-04-07 11:21:19,088 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:21:19,088 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:21:20,092 INFO spawned: 'php-fpm8.1' with pid 113
2022-04-07 11:21:21,128 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:21:21,128 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:21:22,131 INFO spawned: 'php-fpm8.1' with pid 114
2022-04-07 11:21:23,163 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:21:23,163 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:21:24,166 INFO spawned: 'php-fpm8.1' with pid 115
2022-04-07 11:21:25,199 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:21:25,199 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:21:26,202 INFO spawned: 'php-fpm8.1' with pid 116
2022-04-07 11:21:27,237 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:21:27,237 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:21:28,240 INFO spawned: 'php-fpm8.1' with pid 117
2022-04-07 11:21:29,276 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:21:29,276 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:21:30,279 INFO spawned: 'php-fpm8.1' with pid 118
2022-04-07 11:21:31,304 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:21:31,304 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:21:32,307 INFO spawned: 'php-fpm8.1' with pid 119
2022-04-07 11:21:33,330 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:21:33,331 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:21:34,334 INFO spawned: 'php-fpm8.1' with pid 120
2022-04-07 11:21:35,367 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:21:35,367 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:21:36,370 INFO spawned: 'php-fpm8.1' with pid 121
2022-04-07 11:21:37,403 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:21:37,404 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:21:38,407 INFO spawned: 'php-fpm8.1' with pid 122
2022-04-07 11:21:39,430 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:21:39,430 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:21:40,432 INFO spawned: 'php-fpm8.1' with pid 123
2022-04-07 11:21:41,465 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:21:41,466 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:21:42,468 INFO spawned: 'php-fpm8.1' with pid 124
2022-04-07 11:21:43,500 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:21:43,501 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:21:44,504 INFO spawned: 'php-fpm8.1' with pid 125
2022-04-07 11:21:45,539 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:21:45,539 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:21:46,542 INFO spawned: 'php-fpm8.1' with pid 126
2022-04-07 11:21:47,575 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:21:47,575 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:21:48,578 INFO spawned: 'php-fpm8.1' with pid 127
2022-04-07 11:21:49,601 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:21:49,601 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:21:50,605 INFO spawned: 'php-fpm8.1' with pid 128
2022-04-07 11:21:51,626 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:21:51,627 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:21:52,630 INFO spawned: 'php-fpm8.1' with pid 129
2022-04-07 11:21:53,652 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:21:53,653 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:21:54,657 INFO spawned: 'php-fpm8.1' with pid 130
2022-04-07 11:21:55,690 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:21:55,691 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:21:56,694 INFO spawned: 'php-fpm8.1' with pid 131
2022-04-07 11:21:57,717 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:21:57,717 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:21:58,721 INFO spawned: 'php-fpm8.1' with pid 132
2022-04-07 11:21:59,743 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:21:59,743 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:22:00,747 INFO spawned: 'php-fpm8.1' with pid 133
2022-04-07 11:22:01,779 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:22:01,779 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:22:02,782 INFO spawned: 'php-fpm8.1' with pid 134
2022-04-07 11:22:03,817 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:22:03,818 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:22:04,821 INFO spawned: 'php-fpm8.1' with pid 135
2022-04-07 11:22:05,855 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:22:05,855 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:22:06,858 INFO spawned: 'php-fpm8.1' with pid 136
2022-04-07 11:22:07,886 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:22:07,886 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:22:08,890 INFO spawned: 'php-fpm8.1' with pid 137
2022-04-07 11:22:09,914 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:22:09,914 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:22:10,918 INFO spawned: 'php-fpm8.1' with pid 138
2022-04-07 11:22:11,942 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:22:11,942 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:22:12,944 INFO spawned: 'php-fpm8.1' with pid 139
2022-04-07 11:22:13,984 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:22:13,985 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:22:14,987 INFO spawned: 'php-fpm8.1' with pid 140
2022-04-07 11:22:16,014 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:22:16,015 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:22:17,018 INFO spawned: 'php-fpm8.1' with pid 141
2022-04-07 11:22:18,052 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:22:18,052 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:22:19,056 INFO spawned: 'php-fpm8.1' with pid 142
2022-04-07 11:22:20,092 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:22:20,092 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:22:21,095 INFO spawned: 'php-fpm8.1' with pid 143
2022-04-07 11:22:22,131 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:22:22,131 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:22:23,133 INFO spawned: 'php-fpm8.1' with pid 144
2022-04-07 11:22:24,158 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:22:24,158 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:22:25,160 INFO spawned: 'php-fpm8.1' with pid 145
2022-04-07 11:22:26,197 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:22:26,197 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:22:27,200 INFO spawned: 'php-fpm8.1' with pid 146
2022-04-07 11:22:28,224 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:22:28,224 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:22:29,227 INFO spawned: 'php-fpm8.1' with pid 147
2022-04-07 11:22:30,265 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:22:30,265 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:22:31,269 INFO spawned: 'php-fpm8.1' with pid 148
2022-04-07 11:22:32,302 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:22:32,303 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:22:33,306 INFO spawned: 'php-fpm8.1' with pid 149
2022-04-07 11:22:34,339 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:22:34,339 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:22:35,343 INFO spawned: 'php-fpm8.1' with pid 150
2022-04-07 11:22:36,368 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:22:36,368 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:22:37,372 INFO spawned: 'php-fpm8.1' with pid 151
2022-04-07 11:22:38,394 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:22:38,394 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:22:39,398 INFO spawned: 'php-fpm8.1' with pid 152
2022-04-07 11:22:40,425 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:22:40,426 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:22:41,428 INFO spawned: 'php-fpm8.1' with pid 153
2022-04-07 11:22:42,450 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:22:42,450 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:22:43,453 INFO spawned: 'php-fpm8.1' with pid 154
2022-04-07 11:22:44,477 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:22:44,477 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:22:45,480 INFO spawned: 'php-fpm8.1' with pid 155
2022-04-07 11:22:46,503 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:22:46,504 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:22:47,507 INFO spawned: 'php-fpm8.1' with pid 156
2022-04-07 11:22:48,540 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:22:48,540 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:22:49,544 INFO spawned: 'php-fpm8.1' with pid 157
2022-04-07 11:22:50,575 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:22:50,576 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:22:51,579 INFO spawned: 'php-fpm8.1' with pid 158
2022-04-07 11:22:52,611 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:22:52,611 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:22:53,615 INFO spawned: 'php-fpm8.1' with pid 159
2022-04-07 11:22:54,642 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:22:54,642 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:22:55,646 INFO spawned: 'php-fpm8.1' with pid 160
2022-04-07 11:22:56,668 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:22:56,668 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:22:57,672 INFO spawned: 'php-fpm8.1' with pid 161
2022-04-07 11:22:58,704 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:22:58,704 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:22:59,707 INFO spawned: 'php-fpm8.1' with pid 162
2022-04-07 11:23:00,741 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:23:00,741 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:23:01,745 INFO spawned: 'php-fpm8.1' with pid 163
2022-04-07 11:23:02,779 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:23:02,779 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:23:03,783 INFO spawned: 'php-fpm8.1' with pid 164
2022-04-07 11:23:04,806 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:23:04,807 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:23:05,810 INFO spawned: 'php-fpm8.1' with pid 165
2022-04-07 11:23:06,833 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:23:06,833 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:23:07,837 INFO spawned: 'php-fpm8.1' with pid 166
2022-04-07 11:23:08,861 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:23:08,861 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:23:09,864 INFO spawned: 'php-fpm8.1' with pid 167
2022-04-07 11:23:10,900 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:23:10,900 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:23:11,904 INFO spawned: 'php-fpm8.1' with pid 168
2022-04-07 11:23:12,931 INFO success: php-fpm8.1 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:23:12,931 INFO exited: php-fpm8.1 (exit status 78; not expected)
2022-04-07 11:23:18,369 CRIT Supervisor is running as root. Privileges were not dropped because no user is specified in the config file. If you intend to run as root, you can set user=root in the config file to avoid this message.
2022-04-07 11:23:18,370 INFO RPC interface 'supervisor' initialized
2022-04-07 11:23:18,371 CRIT Server 'unix_http_server' running without any HTTP authentication checking
2022-04-07 11:23:18,371 INFO supervisord started with pid 28
2022-04-07 11:23:19,374 INFO spawned: 'apache2' with pid 30
2022-04-07 11:23:19,377 INFO spawned: 'php-fpm' with pid 31
2022-04-07 11:23:19,379 INFO spawned: 'rsyslog' with pid 32
2022-04-07 11:23:20,409 INFO success: apache2 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:23:20,409 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:23:20,409 INFO success: rsyslog entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:23:20,410 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:23:21,412 INFO spawned: 'php-fpm' with pid 104
2022-04-07 11:23:22,446 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:23:22,447 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:23:23,450 INFO spawned: 'php-fpm' with pid 105
2022-04-07 11:23:24,484 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:23:24,484 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:23:25,487 INFO spawned: 'php-fpm' with pid 106
2022-04-07 11:23:26,509 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:23:26,510 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:23:27,512 INFO spawned: 'php-fpm' with pid 107
2022-04-07 11:23:28,542 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:23:28,542 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:23:29,546 INFO spawned: 'php-fpm' with pid 108
2022-04-07 11:23:30,567 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:23:30,567 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:23:31,571 INFO spawned: 'php-fpm' with pid 109
2022-04-07 11:23:32,593 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:23:32,594 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:23:33,604 INFO spawned: 'php-fpm' with pid 110
2022-04-07 11:23:34,625 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:23:34,626 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:23:35,629 INFO spawned: 'php-fpm' with pid 111
2022-04-07 11:23:36,650 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:23:36,651 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:28:46,347 CRIT Supervisor is running as root. Privileges were not dropped because no user is specified in the config file. If you intend to run as root, you can set user=root in the config file to avoid this message.
2022-04-07 11:28:46,349 INFO RPC interface 'supervisor' initialized
2022-04-07 11:28:46,349 CRIT Server 'unix_http_server' running without any HTTP authentication checking
2022-04-07 11:28:46,349 INFO supervisord started with pid 28
2022-04-07 11:28:47,352 INFO spawned: 'apache2' with pid 30
2022-04-07 11:28:47,355 INFO spawned: 'php-fpm' with pid 31
2022-04-07 11:28:47,357 INFO spawned: 'rsyslog' with pid 32
2022-04-07 11:28:48,386 INFO success: apache2 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:28:48,387 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:28:48,387 INFO success: rsyslog entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:28:48,387 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:28:49,390 INFO spawned: 'php-fpm' with pid 104
2022-04-07 11:28:50,412 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:28:50,412 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:28:51,415 INFO spawned: 'php-fpm' with pid 105
2022-04-07 11:28:52,444 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:28:52,444 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:28:53,448 INFO spawned: 'php-fpm' with pid 106
2022-04-07 11:28:54,469 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:28:54,469 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:28:55,479 INFO spawned: 'php-fpm' with pid 107
2022-04-07 11:28:56,514 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:28:56,515 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:28:57,518 INFO spawned: 'php-fpm' with pid 108
2022-04-07 11:28:58,554 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:28:58,554 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:28:59,556 INFO spawned: 'php-fpm' with pid 109
2022-04-07 11:29:00,588 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:29:00,589 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:29:01,592 INFO spawned: 'php-fpm' with pid 110
2022-04-07 11:29:02,626 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:29:02,626 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:29:03,630 INFO spawned: 'php-fpm' with pid 111
2022-04-07 11:29:04,663 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:29:04,663 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:29:05,673 INFO spawned: 'php-fpm' with pid 112
2022-04-07 11:29:06,704 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:29:06,704 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:29:07,707 INFO spawned: 'php-fpm' with pid 113
2022-04-07 11:29:09,756 CRIT Supervisor is running as root. Privileges were not dropped because no user is specified in the config file. If you intend to run as root, you can set user=root in the config file to avoid this message.
2022-04-07 11:29:09,759 INFO RPC interface 'supervisor' initialized
2022-04-07 11:29:09,759 CRIT Server 'unix_http_server' running without any HTTP authentication checking
2022-04-07 11:29:09,759 INFO supervisord started with pid 29
2022-04-07 11:29:10,761 INFO spawned: 'apache2' with pid 31
2022-04-07 11:29:10,764 INFO spawned: 'php-fpm' with pid 32
2022-04-07 11:29:10,766 INFO spawned: 'rsyslog' with pid 33
2022-04-07 11:29:11,795 INFO success: apache2 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:29:11,795 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:29:11,795 INFO success: rsyslog entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:29:11,795 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:29:12,799 INFO spawned: 'php-fpm' with pid 105
2022-04-07 11:29:13,821 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:29:13,821 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:29:14,824 INFO spawned: 'php-fpm' with pid 106
2022-04-07 11:29:15,849 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:29:15,849 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:29:16,853 INFO spawned: 'php-fpm' with pid 107
2022-04-07 11:29:17,877 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:29:17,877 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:29:18,881 INFO spawned: 'php-fpm' with pid 108
2022-04-07 11:29:19,902 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:29:19,902 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:29:20,906 INFO spawned: 'php-fpm' with pid 109
2022-04-07 11:29:21,930 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:29:21,930 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:29:22,934 INFO spawned: 'php-fpm' with pid 110
2022-04-07 11:29:23,957 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:29:23,957 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:29:24,960 INFO spawned: 'php-fpm' with pid 111
2022-04-07 11:29:25,983 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:29:25,983 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:29:26,987 INFO spawned: 'php-fpm' with pid 112
2022-04-07 11:29:28,009 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:29:28,009 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:29:29,020 INFO spawned: 'php-fpm' with pid 113
2022-04-07 11:29:30,055 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:29:30,055 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:29:31,058 INFO spawned: 'php-fpm' with pid 114
2022-04-07 11:29:32,080 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:29:32,080 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:29:33,084 INFO spawned: 'php-fpm' with pid 115
2022-04-07 11:29:34,104 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:29:34,104 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:29:35,107 INFO spawned: 'php-fpm' with pid 124
2022-04-07 11:29:36,129 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:29:36,130 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:29:37,133 INFO spawned: 'php-fpm' with pid 125
2022-04-07 11:29:38,155 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:29:38,155 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:29:39,158 INFO spawned: 'php-fpm' with pid 126
2022-04-07 11:29:40,177 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:29:40,177 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:29:41,180 INFO spawned: 'php-fpm' with pid 128
2022-04-07 11:29:42,200 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:29:42,201 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:29:43,204 INFO spawned: 'php-fpm' with pid 129
2022-04-07 11:29:44,227 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:29:44,227 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:29:45,230 INFO spawned: 'php-fpm' with pid 130
2022-04-07 11:29:46,253 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:29:46,253 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:29:47,257 INFO spawned: 'php-fpm' with pid 131
2022-04-07 11:29:48,280 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:29:48,280 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:29:49,283 INFO spawned: 'php-fpm' with pid 132
2022-04-07 11:29:50,305 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:29:50,305 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:29:51,308 INFO spawned: 'php-fpm' with pid 133
2022-04-07 11:29:52,340 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:29:52,340 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:29:53,344 INFO spawned: 'php-fpm' with pid 135
2022-04-07 11:29:54,364 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:29:54,364 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:29:55,367 INFO spawned: 'php-fpm' with pid 136
2022-04-07 11:29:56,388 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:29:56,389 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:29:57,399 INFO spawned: 'php-fpm' with pid 137
2022-04-07 11:29:58,423 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:29:58,424 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:29:59,427 INFO spawned: 'php-fpm' with pid 138
2022-04-07 11:30:00,453 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:30:00,453 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:30:01,457 INFO spawned: 'php-fpm' with pid 139
2022-04-07 11:30:02,490 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:30:02,490 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:30:03,494 INFO spawned: 'php-fpm' with pid 140
2022-04-07 11:30:04,517 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:30:04,517 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:30:05,521 INFO spawned: 'php-fpm' with pid 141
2022-04-07 11:30:06,543 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:30:06,543 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:30:07,546 INFO spawned: 'php-fpm' with pid 142
2022-04-07 11:30:08,569 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:30:08,569 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:30:09,573 INFO spawned: 'php-fpm' with pid 143
2022-04-07 11:30:10,594 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:30:10,594 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:30:11,598 INFO spawned: 'php-fpm' with pid 144
2022-04-07 11:30:12,619 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:30:12,619 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:30:13,622 INFO spawned: 'php-fpm' with pid 148
2022-04-07 11:30:14,645 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:30:14,645 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:30:15,648 INFO spawned: 'php-fpm' with pid 149
2022-04-07 11:30:16,684 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:30:16,684 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:30:17,688 INFO spawned: 'php-fpm' with pid 150
2022-04-07 11:30:18,710 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:30:18,711 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:30:19,714 INFO spawned: 'php-fpm' with pid 162
2022-04-07 11:30:20,747 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:30:20,747 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:30:21,750 INFO spawned: 'php-fpm' with pid 163
2022-04-07 11:30:22,774 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:30:22,774 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:30:23,776 INFO spawned: 'php-fpm' with pid 164
2022-04-07 11:30:24,799 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:30:24,799 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:30:25,802 INFO spawned: 'php-fpm' with pid 165
2022-04-07 11:30:26,823 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:30:26,823 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:30:27,826 INFO spawned: 'php-fpm' with pid 166
2022-04-07 11:30:28,846 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:30:28,846 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:30:29,849 INFO spawned: 'php-fpm' with pid 167
2022-04-07 11:30:30,209 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:30:31,264 INFO spawned: 'php-fpm' with pid 181
2022-04-07 11:30:32,286 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:30:32,286 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:30:33,289 INFO spawned: 'php-fpm' with pid 182
2022-04-07 11:30:34,312 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:30:34,312 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:30:35,316 INFO spawned: 'php-fpm' with pid 190
2022-04-07 11:30:36,339 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:30:36,339 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:30:37,342 INFO spawned: 'php-fpm' with pid 191
2022-04-07 11:30:38,374 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:30:38,374 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:30:39,377 INFO spawned: 'php-fpm' with pid 192
2022-04-07 11:30:40,412 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:30:40,412 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:30:41,416 INFO spawned: 'php-fpm' with pid 193
2022-04-07 11:30:42,439 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:30:42,439 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:30:43,442 INFO spawned: 'php-fpm' with pid 194
2022-04-07 11:30:44,465 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:30:44,465 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:30:45,468 INFO spawned: 'php-fpm' with pid 195
2022-04-07 11:30:46,503 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:30:46,503 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:30:47,506 INFO spawned: 'php-fpm' with pid 196
2022-04-07 11:30:48,538 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:30:48,539 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:30:49,542 INFO spawned: 'php-fpm' with pid 197
2022-04-07 11:30:50,575 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:30:50,575 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:30:51,578 INFO spawned: 'php-fpm' with pid 199
2022-04-07 11:30:52,611 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:30:52,611 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:30:53,614 INFO spawned: 'php-fpm' with pid 200
2022-04-07 11:30:54,639 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:30:54,640 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:30:55,646 INFO spawned: 'php-fpm' with pid 201
2022-04-07 11:30:56,679 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:30:56,679 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:30:57,682 INFO spawned: 'php-fpm' with pid 202
2022-04-07 11:30:58,716 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:30:58,716 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:30:59,720 INFO spawned: 'php-fpm' with pid 203
2022-04-07 11:31:00,741 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:31:00,741 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:31:01,744 INFO spawned: 'php-fpm' with pid 204
2022-04-07 11:31:02,777 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:31:02,777 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:31:03,780 INFO spawned: 'php-fpm' with pid 205
2022-04-07 11:31:04,802 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:31:04,802 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:31:05,805 INFO spawned: 'php-fpm' with pid 206
2022-04-07 11:31:05,951 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:31:07,016 INFO spawned: 'php-fpm' with pid 230
2022-04-07 11:31:08,049 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:31:08,049 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:31:09,052 INFO spawned: 'php-fpm' with pid 231
2022-04-07 11:31:10,075 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:31:10,075 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:31:11,078 INFO spawned: 'php-fpm' with pid 232
2022-04-07 11:31:12,101 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:31:12,101 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:31:13,105 INFO spawned: 'php-fpm' with pid 233
2022-04-07 11:31:14,127 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:31:14,127 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:31:15,130 INFO spawned: 'php-fpm' with pid 234
2022-04-07 11:31:16,155 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:31:16,155 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:31:17,159 INFO spawned: 'php-fpm' with pid 235
2022-04-07 11:31:18,182 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:31:18,182 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:31:18,259 INFO spawned: 'php-fpm' with pid 239
2022-04-07 11:31:19,284 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:34:50,073 CRIT Supervisor is running as root. Privileges were not dropped because no user is specified in the config file. If you intend to run as root, you can set user=root in the config file to avoid this message.
2022-04-07 11:34:50,075 INFO RPC interface 'supervisor' initialized
2022-04-07 11:34:50,075 CRIT Server 'unix_http_server' running without any HTTP authentication checking
2022-04-07 11:34:50,075 INFO supervisord started with pid 28
2022-04-07 11:34:51,078 INFO spawned: 'apache2' with pid 30
2022-04-07 11:34:51,081 INFO spawned: 'php-fpm' with pid 31
2022-04-07 11:34:51,083 INFO spawned: 'rsyslog' with pid 32
2022-04-07 11:34:52,108 INFO success: apache2 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:34:52,109 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:34:52,109 INFO success: rsyslog entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:34:52,109 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:34:53,112 INFO spawned: 'php-fpm' with pid 104
2022-04-07 11:34:54,136 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:34:54,136 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:34:55,139 INFO spawned: 'php-fpm' with pid 105
2022-04-07 11:34:56,162 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:34:56,162 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:34:57,164 INFO spawned: 'php-fpm' with pid 106
2022-04-07 11:34:58,198 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:34:58,198 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:34:59,200 INFO spawned: 'php-fpm' with pid 114
2022-04-07 11:35:00,233 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:35:00,233 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:35:01,237 INFO spawned: 'php-fpm' with pid 115
2022-04-07 11:35:02,264 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:35:02,264 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:35:03,268 INFO spawned: 'php-fpm' with pid 116
2022-04-07 11:35:04,300 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:35:04,300 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:35:05,303 INFO spawned: 'php-fpm' with pid 117
2022-04-07 11:35:06,338 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:35:06,338 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:35:07,340 INFO spawned: 'php-fpm' with pid 118
2022-04-07 11:35:08,362 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:35:08,363 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:35:09,366 INFO spawned: 'php-fpm' with pid 119
2022-04-07 11:35:10,390 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:35:10,391 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:35:11,394 INFO spawned: 'php-fpm' with pid 120
2022-04-07 11:35:12,415 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:35:12,416 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:35:12,706 INFO spawned: 'php-fpm' with pid 124
2022-04-07 11:35:12,734 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:35:13,736 INFO spawned: 'php-fpm' with pid 132
2022-04-07 11:35:14,757 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:35:14,757 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:35:15,761 INFO spawned: 'php-fpm' with pid 133
2022-04-07 11:35:16,783 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:35:16,783 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:35:17,786 INFO spawned: 'php-fpm' with pid 134
2022-04-07 11:35:18,807 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:35:18,808 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:35:19,819 INFO spawned: 'php-fpm' with pid 135
2022-04-07 11:35:20,851 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:35:20,851 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:35:21,854 INFO spawned: 'php-fpm' with pid 136
2022-04-07 11:35:22,877 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:35:22,878 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:35:23,880 INFO spawned: 'php-fpm' with pid 137
2022-04-07 11:35:24,578 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:35:25,633 INFO spawned: 'php-fpm' with pid 161
2022-04-07 11:35:26,655 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:35:26,656 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:35:27,659 INFO spawned: 'php-fpm' with pid 162
2022-04-07 11:35:28,686 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:35:28,686 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:35:29,688 INFO spawned: 'php-fpm' with pid 163
2022-04-07 11:35:30,712 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:35:30,712 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:35:31,716 INFO spawned: 'php-fpm' with pid 164
2022-04-07 11:35:32,739 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:35:32,739 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:35:33,743 INFO spawned: 'php-fpm' with pid 165
2022-04-07 11:35:34,769 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:35:34,770 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:35:35,401 INFO spawned: 'php-fpm' with pid 169
2022-04-07 11:35:36,428 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:38:51,854 CRIT Supervisor is running as root. Privileges were not dropped because no user is specified in the config file. If you intend to run as root, you can set user=root in the config file to avoid this message.
2022-04-07 11:38:51,856 INFO RPC interface 'supervisor' initialized
2022-04-07 11:38:51,856 CRIT Server 'unix_http_server' running without any HTTP authentication checking
2022-04-07 11:38:51,856 INFO supervisord started with pid 28
2022-04-07 11:38:52,859 INFO spawned: 'apache2' with pid 30
2022-04-07 11:38:52,862 INFO spawned: 'php-fpm' with pid 31
2022-04-07 11:38:52,864 INFO spawned: 'rsyslog' with pid 32
2022-04-07 11:38:53,885 INFO success: apache2 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:38:53,885 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:38:53,885 INFO success: rsyslog entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:38:53,885 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:38:54,888 INFO spawned: 'php-fpm' with pid 104
2022-04-07 11:38:55,923 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:38:55,923 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:38:56,926 INFO spawned: 'php-fpm' with pid 105
2022-04-07 11:38:57,950 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:38:57,950 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:38:58,952 INFO spawned: 'php-fpm' with pid 113
2022-04-07 11:38:59,976 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:38:59,976 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:39:00,980 INFO spawned: 'php-fpm' with pid 114
2022-04-07 11:39:02,011 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:39:02,011 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:39:03,014 INFO spawned: 'php-fpm' with pid 115
2022-04-07 11:39:04,049 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:39:04,050 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:39:05,053 INFO spawned: 'php-fpm' with pid 116
2022-04-07 11:39:06,065 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2022-04-07 11:39:06,066 INFO exited: php-fpm (exit status 78; not expected)
2022-04-07 11:39:06,068 INFO spawned: 'php-fpm' with pid 119
2022-04-07 11:39:07,096 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)

1
supervisord.pid Normal file
View File

@ -0,0 +1 @@
28

145
symfony.lock Normal file
View File

@ -0,0 +1,145 @@
{
"psr/cache": {
"version": "2.0.0"
},
"psr/container": {
"version": "1.1.2"
},
"psr/event-dispatcher": {
"version": "1.0.0"
},
"psr/log": {
"version": "2.0.0"
},
"symfony/cache": {
"version": "v5.4.7"
},
"symfony/cache-contracts": {
"version": "v2.5.1"
},
"symfony/config": {
"version": "v5.4.7"
},
"symfony/console": {
"version": "5.4",
"recipe": {
"repo": "github.com/symfony/recipes",
"branch": "master",
"version": "5.3",
"ref": "da0c8be8157600ad34f10ff0c9cc91232522e047"
},
"files": [
"bin/console"
]
},
"symfony/dependency-injection": {
"version": "v5.4.7"
},
"symfony/deprecation-contracts": {
"version": "v3.0.1"
},
"symfony/dotenv": {
"version": "v5.4.5"
},
"symfony/error-handler": {
"version": "v5.4.7"
},
"symfony/event-dispatcher": {
"version": "v5.4.3"
},
"symfony/event-dispatcher-contracts": {
"version": "v3.0.1"
},
"symfony/filesystem": {
"version": "v5.4.7"
},
"symfony/finder": {
"version": "v5.4.3"
},
"symfony/flex": {
"version": "2.1",
"recipe": {
"repo": "github.com/symfony/recipes",
"branch": "master",
"version": "1.0",
"ref": "c0eeb50665f0f77226616b6038a9b06c03752d8e"
},
"files": [
".env"
]
},
"symfony/framework-bundle": {
"version": "5.4",
"recipe": {
"repo": "github.com/symfony/recipes",
"branch": "master",
"version": "5.4",
"ref": "3cd216a4d007b78d8554d44a5b1c0a446dab24fb"
},
"files": [
"config/packages/cache.yaml",
"config/packages/framework.yaml",
"config/preload.php",
"config/routes/framework.yaml",
"config/services.yaml",
"public/index.php",
"src/Controller/.gitignore",
"src/Kernel.php"
]
},
"symfony/http-foundation": {
"version": "v5.4.6"
},
"symfony/http-kernel": {
"version": "v5.4.7"
},
"symfony/polyfill-intl-grapheme": {
"version": "v1.25.0"
},
"symfony/polyfill-intl-normalizer": {
"version": "v1.25.0"
},
"symfony/polyfill-mbstring": {
"version": "v1.25.0"
},
"symfony/polyfill-php73": {
"version": "v1.25.0"
},
"symfony/polyfill-php80": {
"version": "v1.25.0"
},
"symfony/polyfill-php81": {
"version": "v1.25.0"
},
"symfony/routing": {
"version": "5.4",
"recipe": {
"repo": "github.com/symfony/recipes",
"branch": "master",
"version": "5.3",
"ref": "85de1d8ae45b284c3c84b668171d2615049e698f"
},
"files": [
"config/packages/routing.yaml",
"config/routes.yaml"
]
},
"symfony/runtime": {
"version": "v5.4.7"
},
"symfony/service-contracts": {
"version": "v2.5.1"
},
"symfony/string": {
"version": "v5.4.3"
},
"symfony/var-dumper": {
"version": "v5.4.6"
},
"symfony/var-exporter": {
"version": "v5.4.7"
},
"symfony/yaml": {
"version": "v5.4.3"
}
}

17
web/app_docker.php Executable file
View File

@ -0,0 +1,17 @@
<?php
use Symfony\Component\ErrorHandler\Debug;
use Symfony\Component\HttpFoundation\Request;
require __DIR__.'/../vendor/autoload.php';
Debug::enable();
$kernel = new AppKernel('dev', true);
if (PHP_VERSION_ID < 70000) {
$kernel->loadClassCache();
}
Request::setTrustedProxies(['192.168.0.0/24'], Request::HEADER_X_FORWARDED_ALL);
$request = Request::createFromGlobals();
$response = $kernel->handle($request);
$response->send();
$kernel->terminate($request, $response);