forked from youngj/httpserver
-
Notifications
You must be signed in to change notification settings - Fork 1
/
README.txt
49 lines (41 loc) · 1.98 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
HTTPServer
http://github.com/youngj/httpserver
A simple HTTP server,
written in PHP,
that serves PHP scripts and static files,
for use in developing PHP applications.
Motivation:
* To allow running PHP scripts in a web browser on a development computer
without needing to install a web server like Apache or Nginx.
* To allow automated scripts (e.g. Selenium tests) to spawn a HTTP server with
custom environment variables (e.g. to override some application config settings),
and easily capture server log output.
* To allow more rapid debugging, by printing stderr output (e.g. error_log())
directly to the console instead of a server log file.
Dependencies:
* PHP 5.3 or higher
* php-cgi binary
Features:
* Works on Windows as well as POSIX systems.
* Can handle many concurrent connections using non-blocking sockets.
* Implements HTTP Keep-Alive for better performance.
* Clients can define basically any server configuration / rewrite rules
just by creating a subclass of HTTPServer.
* Nearly all PHP scripts should work without modification. (Each PHP
request is run in an isolated environment using PHP-CGI.)
* Does not require any PHP extensions.
Caveats:
* Should NOT be used as a production web server open to untrusted traffic.
* Not very robust (e.g. no connection limit or timeouts)
* May have security flaws
* On Windows, PHP requests will block the server until the php-cgi process
completes (PHP on Windows cannot share sockets across multiple processes,
and does not have non-blocking pipes).
* PHP scripts that depend on server-specific extensions (e.g. functions like
apache_*, iis_*, nsapi_*) will not work.
How to use:
Clients should subclass HTTPServer and override the route_request() method
(and possibly other methods as necessary).
See examples/example_server.php.
License:
See LICENSE.txt