From 38fa847bd8e81c74ae5cc561415579e73945f26c Mon Sep 17 00:00:00 2001 From: Dinesh Talwadker Date: Fri, 29 Nov 2024 00:24:03 +0530 Subject: [PATCH] chore: added example with php.ini values in env variables --- apps/docs/content/php/how-to/customize-runtime.mdx | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/apps/docs/content/php/how-to/customize-runtime.mdx b/apps/docs/content/php/how-to/customize-runtime.mdx index ba74d975..82451583 100644 --- a/apps/docs/content/php/how-to/customize-runtime.mdx +++ b/apps/docs/content/php/how-to/customize-runtime.mdx @@ -50,3 +50,15 @@ To invalidate the custom runtime cache go to `yyy` **// TODO screenshot** When the custom runtime cache is used, Zerops doesn't create a prepare runtime container and executes the deployment of your application directly. + +### Example + +```yml +zerops: + - setup: app + run: + base: php-nginx@8.3 + envVariables: + # It is possible to overwrite php.ini values using env variables + PHP_INI_post_max_size: 10M +```