What is this?
The Windows Webserver was developed for testing PHP and CGI/FCGI programs under Windows, without installing an Apache or IIS environment. The Webserver is easy to install and comes with buildin PHP 8.0.17, FastCGI support, mod_rewrite and SSL/TLS 1.2. Also FTP(S), WebDAV and DNS is integrated. WWebserver is not Apache and was developed from the scratch. It was tested with common OpenSource applications like Wordpress, Joomla, Drupal, Typo3, Magento, phpMyAdmin, PIWIK, AWstats. It's like XAMPP - but much more smarter.
Installation and Configuration
1. Install complete program with PHP 8.0.17 (Win7+, Win10)
wwebserver_php_8017_setup.exe (36.0 MB)
or PHP 7.4.12 (Win7+, Win10)
wwebserver_php_7412_setup.exe (35.6 MB) or PHP 7.3.11 wwebserver_php_7311_setup.exe (35.5 MB) or older versions ...
Or with PHP 5.4.45 (WinXP+)
wwebserver_php_5445_setup.exe (16.6 MB)
Or use only command line, the smallest version without buildin PHP, SSL, FTP, WebDAV, WWadmin.
You have to download your preferred PHP version manually and configurate it with FastCGI.
wwebserver_19_cmd.zip (210 KB)
2. Type in your Host, Port, Document Path and start it.
3. Open your Webbrowser and start your PHP application like:
http://localhost/index.php
Virtual Directories
You can define virtual directories to handle multiple document paths.
Therefore edit the following configuration file:
C:\WWebserver\cfg\vdir.txt
# Definitions of virtual directories
# <Path>;<Directory>
#
# Note: There must be an '/' on end of <Path>
pma/;C:\phpMyAdmin
typo3/;C:\typo3
drupal/;C:\drupal
wordpress/;C:\wordpress
You can start the applications now verry simple like: http://localhost/wordpress
Note: After changing vdir.txt STOP and START Webserver again.
Another way to handle multiple applications is to register Virtual Hosts with own DNS records of the internal DNS-Server.
CGI Programs
You can define own CGI Programs for example Perl or Ruby.
Therefore edit the following configuration file:
C:\WWebserver\cfg\cgi.txt
# Definitions of CGI programs
# <Alias 1> <Alias 2> ...;<Full path to CGI program>
# <Alias 1> <Alias 2> ...;PHPBuildIn
# <Alias 1> <Alias 2> ...;PHPFCGI [<Full path to php-cgi.exe>]
# <Alias 1> <Alias 2> ...;FCGI <Full path to FastCGI program> | <IP>:<Port> or <Pipename>
# <Alias 1> <Alias 2> ...;FCGI <IP>:<Port> or <Pipename>
.php .php4 .php3;PHPFCGI
.rb;C:\ruby\bin\ruby.exe
.pl;C:\perl\bin\perl.exe
In this example we associate file extensions .rb with Ruby scripts and .pl
with Perl scripts.
.php .php3 .php4 files are associated with PHP FastCGI of the current installed version.
Per default PHP will be used as PHPBuildIn version which means that no separate PHP processes will be created in deviation to PHPFCGI.
In my opinion PHPBuildIn is the fastest version of PHP but you cannot use different PHP versions on Virtual Hosts with PHPBuildIn.
Note: After changing cgi.txt please STOP and START Webserver again.
PHP Configuration
You can control the PHP environment with the php.ini file:
C:\WWebserver\cfg\php.ini
You can enable/disable the PHP extension DLL's located in directory:
C:\WWebserver\ext
Note: After changing php.ini you have to EXIT and RESTART the Webserver.
Virtual Hosts
You can define virtual hosts with own home directories and PHP settings. Therefore edit the following configuration file:
C:\WWebserver\cfg\vhost.txt
# [<unique name>=]<hostname1[:port]>[,<hostname2[:port]> ...];<Directory>
# You can create for every virtual host a own configuration directory: cfg/vhost/<hostname|unique name>
# Following configuration files can be overwritten: mime.txt, vdir.txt, cgi.txt, php.ini (only for FastCGI)
# Examples
mydomain.com,www.mydomain.com;C:\MyDomain.com
localhost:9090;C:\localhost_9090
Note: A virtual host tells the web server the home directory of a domain.
However, the domain must be resolvable via DNS so that your web browser can find the IP address of the domain, which must be the IP on which the web server is running.
You can use the buildin DNS-Server easily to setup virtual domains on your system.
URL Rewriting
Read more about mod_rewrite, Redirect and .htaccess.
Directory Protection
WWebserver understand the HTTP Basic Authorization.
Read more about directory protection.
SSL/TLS 1.2
WWebserver support TLS 1.2 per default (based on OpenSSL v1.1.0b). Self signed X.509 certificates (RSA 2048 Bits) are generated automatically for every hostname. You can install your own certificates in the following directory:
C:\WWebserver\cfg\ssl for public certificates
C:\WWebserver\cfg\ssl\key for private key files
Certificates and key files must have the following filename convention: <hostname>.crt, <hostname>.key
You can ignore the www. prefix. Every certificate file will be checked automatically on www. domains.
Note: Self signed certificates are marked as insecure by most web browsers and are verry slow because of the TLS handshake will fail.
Please use https://<IP address> instead of hostname for a fast HTTPS connection.
FTP-Server with explicit TLS
Read manual: Configuration of the internal FTP-Server
DNS-Server
Read manual: Configuration of the internal DNS-Server
WebDAV
If you want to get WebDAV access to the document path you have to create a WWAdmin password with reset_pwd.bat
After that you can login with your WebDAV client and wwadmin user. FTP users in cfg\ftpuser.txt are allowed to access they're resources with following URL:
http(s)://<hostname>/webdav-users/<user>/
The path /webdav-users/... will always prompt a user login and link to the home directory of the specified user.
Note! You dont have to enable FTP to get WebDAV access with wwadmin user or FTP users.
Cronjobs
You can execute cronjobs with WWebserver. Crontab is organized like Linux crontab. Please edit following file:
C:\WWebserver\cfg\crontab.txt
# <minute> <hour> <day> <month> <weekday> <url>|exec <cmd> [<resultfile>]
# Weekday: 1 = Mon, 0 = Sun
# Special keywords:
# @startup called on first startup
# @start called on first startup and after restart
# @shutdown called on final shutdown
# @stop called on final shutdown and before restart
# In this example we call every 10 minutes a URL and save the result in cron_result.html
*/10 * * * * https://www.mydomain.com/program.php?param1=1¶m2=2 cron_result.html
# In this example we execute a local program (wget.exe) on Saturday 23:00
0 23 * * 6 exec wget.exe http://www.mydomain.com/program.php?param1=1¶m2=2 -O cron_result_wget.html
# In this example we call a script on startup
@startup * * * * exec php.exe startup_script.php
Note: You dont need to restart Webserver after changing crontab.txt.
Server Optimization
Number of parallel requests, timeouts, enabling/disabling .htaccess and directory index can be configurated with following configuration file:
C:\WWebserver\cfg\speed.txt
Special Files
You can lock access to specific directory and all sub directories simply by creating the following empty file in this directory:
forbidden
You can force a restart or stop of WWebserver by creating the following empty files in the installation directory:
restart stop
Command Line Options
WWebserver comes as GUI and CLI version.
You can see all command line options with --help:
C:\WWebserver\wwebserver_cmd.exe --help
Server Administration Panel
http://localhost/wwadmin/
Experimental Laboratory for Scripts
Read manual: Install WWLabor
Forum
Bug reporting and discussion: Take a look at the Windows Webserver Forum.
Old versions (also for Windows 2000) you can find here.