Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.

mpyw/php-hyper-builtin-server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

65 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PHP Hyper Built-in Server

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

Installing

Global install

composer global require mpyw/php-hyper-builtin-server:^2.0 

If not yet, you must add ~/.composer/vendor/bin to $PATH.
Append the following statement to ~/.bashrc, ~/.zshrc or what not.

export PATH="~/.composer/vendor/bin:$PATH"

Local install only for development environment

composer require --dev mpyw/php-hyper-builtin-server:^2.0 

Use vendor/bin/hyper-run as the execution path.

Usage

mpyw@localhost:~$ hyper-run -h Usage:  hyper-run <options> Example:  hyper-run -S localhost:8080 -s localhost:8081 [Required]  -S "<Host>:<Port>" of an HTTP server. Multiple arguments can be accepted.  -s "<Host>:<Port>" of an HTTPS server. Multiple arguments can be accepted. [Optional]  -n The number of PHP built-in server clusters, from 1 to 20. Default is 10.  -t Path for the document root. Default is the current directory.  -r Path for the router script. Default is empty.  -c Path for the PEM-encoded certificate.  Default is "/Users/mpyw/.composer/vendor/mpyw/php-hyper-builtin-server/certificate.pem". Restrictions:  - The option -s is only supported on PHP 5.6.0 or later.  - Access logs will not be displayed on Windows. mpyw@localhost:~$

Example

hyper-run -S localhost:8080 -s localhost:8081 -t src/app/www 

It listens on

  • http://localhost:8080
  • https://localhost:8081

using the directory src/app/www as the document root.

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

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

For XAMPP

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

About

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

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  

Languages