Skip to content

Commit

Permalink
Merge pull request #6 from Jiab77/0.2
Browse files Browse the repository at this point in the history
πŸ› Fixed wrong path inherited from version 0.3
  • Loading branch information
Jiab77 authored Nov 17, 2021
2 parents c42d1fe + 11ea0e6 commit 743a101
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions start-web-server.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ PHP_SRV_TYPE=$(php -r "if (version_compare(phpversion(), '7.4', '<')) { echo 'si

# Run detected server type
if [[ $PHP_SRV_TYPE == 'multicore' ]]; then
# PHP_CLI_SERVER_WORKERS=$(nproc) php -S ${LISTEN_INTERFACE}:${LISTEN_PORT} libvirtweb.php
PHP_CLI_SERVER_WORKERS=$(nproc) php -S ${LISTEN_INTERFACE}:${LISTEN_PORT} -t .
PHP_CLI_SERVER_WORKERS=$(nproc) php -S ${LISTEN_INTERFACE}:${LISTEN_PORT} libvirtweb.php
# PHP_CLI_SERVER_WORKERS=$(nproc) php -S ${LISTEN_INTERFACE}:${LISTEN_PORT} -t .
else
# php -S ${LISTEN_INTERFACE}:${LISTEN_PORT} libvirtweb.php
php -S ${LISTEN_INTERFACE}:${LISTEN_PORT} -t .
php -S ${LISTEN_INTERFACE}:${LISTEN_PORT} libvirtweb.php
# php -S ${LISTEN_INTERFACE}:${LISTEN_PORT} -t .
fi

0 comments on commit 743a101

Please sign in to comment.