From 0b9f4529d457d1a2f5c4850847aa508cca4e313a Mon Sep 17 00:00:00 2001 From: Tsiry Sandratraina Date: Thu, 11 Jul 2024 23:24:40 +0000 Subject: [PATCH] feat(php): set php.ini location --- .github/workflows/php.yml | 2 +- php/src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index bd537b5..30528ab 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -28,7 +28,7 @@ jobs: - name: Start Httpbin Server run: | fluentci run ../target/wasm32-unknown-unknown/release/php_fpm.wasm start - fluentci run ../target/wasm32-unknown-unknown/release/php_fpm.wasm stop httpbin + fluentci run ../target/wasm32-unknown-unknown/release/php_fpm.wasm stop php-fpm working-directory: php/example env: GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/php/src/lib.rs b/php/src/lib.rs index 3f387e4..4f3152f 100644 --- a/php/src/lib.rs +++ b/php/src/lib.rs @@ -17,7 +17,7 @@ pub fn start(_args: String) -> FnResult { .with_exec(vec!["type", "overmind"])? .with_exec(vec!["type", "php"])? .with_exec(vec!["type", "php-fpm"])? - .with_exec(vec!["overmind", "start", "-f", "Procfile", "--daemonize"])? + .with_exec(vec!["overmind", "start", "-f", "Procfile"])? .with_exec(vec!["overmind", "status"])? .stdout()?; Ok(stdout)