Skip to content
Snippets Groups Projects

Draft: Issue #3437187 by andypost: Testing FrankenPHP

Closes #3437187

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
3 # Path to FrankenPHP binary
4 FRANKENPHP_BIN="/usr/local/bin/frankenphp"
5
6 # FrankenPHP parameters
7 FRANKENPHP_ARGS="php-server -a"
8
9 # User and group to run the service
10 USER="www-data"
11 GROUP="www-data"
12
13 PIDFILE="/var/run/frankenphp.pid"
14
3 15 ln -s $CI_PROJECT_DIR /var/www/html/subdirectory
4 sudo service apache2 start
16 #sudo service apache2 start
17 sudo start-stop-daemon --start --quiet --background --pidfile $PIDFILE --make-pidfile --chuid $USER:$GROUP --exec $FRANKENPHP_BIN -- $FRANKENPHP_ARGS
  • added 1 commit

    • 1267d290 - Revert "change frankenphp and start-stop-daemon args"

    Compare with previous version

  • Please register or sign in to reply
    Loading