项目作者: mpyw

项目描述 :
Reverse proxy for PHP built-in server which supports multiprocessing and TLS/SSL encryption
高级语言: PHP
项目地址: git://github.com/mpyw/php-hyper-builtin-server.git
创建时间: 2016-08-06T06:08:57Z
项目社区:https://github.com/mpyw/php-hyper-builtin-server

开源协议:MIT License

下载


PHP Hyper Built-in Server Build Status Scrutinizer Code Quality

Reverse proxy for PHP built-in server which supports multiprocessing and TLS/SSL encryption.

Installing

Global install

```shell script
composer global require mpyw/php-hyper-builtin-server:^3.0

  1. If not yet, you must add **`~/.composer/vendor/bin`** to `$PATH`.
  2. Append the following statement to `~/.bashrc`, `~/.zshrc` or what not.
  3. ```bash
  4. export PATH="$HOME/.composer/vendor/bin:$PATH"

Local install only for development environment

```shell script
composer require —dev mpyw/php-hyper-builtin-server:^3.0

  1. Use **`vendor/bin/hyper-run`** as the execution path.
  2. ## Usage
  3. ### Quick start
  4. ```shell script
  5. hyper-run -S localhost -s localhost -t src/app/www

2 servers will start with the directory src/app/www as the document root:

  • http://localhost:8000
  • https://localhost:44300

Servers start with first unoccupied port within range depending on a scheme.

Scheme Default Range
HTTP 8000 8000-8099
HTTPS 44300 44300-44399

Customize ports

```shell script
hyper-run -S localhost:8080 -s localhost:4000 -t src/app/www

  1. 2 servers will start with the directory `src/app/www` as the document root:
  2. - `http://localhost:8080`
  3. - `https://localhost:4000`
  4. ### Command Reference
  5. ```ShellSession
  6. mpyw@localhost:~$ hyper-run -h
  7. Usage:
  8. hyper-run <options>
  9. Example:
  10. hyper-run -S localhost:8000 -s localhost:44300
  11. [Required]
  12. -S "<Host>:<Port>" of an HTTP server. Multiple arguments can be accepted.
  13. -s "<Host>:<Port>" of an HTTPS server. Multiple arguments can be accepted.
  14. [Optional]
  15. -n The number of PHP built-in server clusters, from 1 to 20. Default is 10.
  16. -t Path for the document root. Default is the current directory.
  17. -r Path for the router script. Default is empty.
  18. -c Path for the PEM-encoded certificate.
  19. Default is "/Users/mpyw/.composer/vendor/mpyw/php-hyper-builtin-server/certificate.pem".
  20. Restrictions:
  21. - The option -s is only supported on PHP 5.6.0 or later.
  22. - Access logs will not be displayed on Windows.
  23. mpyw@localhost:~$

Note for Windows users

Unfortunately, cmd.exe has no option to run via shebang #!/usr/bin/env php, so you need to create the following batch file in the proper directory.

For Standalone PHP

  1. @echo OFF
  2. "C:\php\php.exe" "%HOMEPATH%\.composer\vendor\mpyw\php-hyper-builtin-server\hyper-run" %*

For XAMPP

  1. @echo OFF
  2. "C:\xampp\php\php.exe" "%HOMEPATH%\.composer\vendor\mpyw\php-hyper-builtin-server\hyper-run" %*

License

  • PHP Hyper Built-in Server is open-sourced software licensed under the MIT license by @mpyw.