Skip to content

Commit

Permalink
feat(php): set php.ini location
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Jul 11, 2024
1 parent fabc721 commit 0b9f452
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion php/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pub fn start(_args: String) -> FnResult<String> {
.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)
Expand Down

0 comments on commit 0b9f452

Please sign in to comment.