$ sudo apt-get install apache2
It works!
This is the default web page for this server.
The web server software is running but no content has been added, yet.
$ sudo a2enmod rewrite
$ sudo a2dissite default
$ sudo a2ensite bluefish
export APACHE_RUN_USER=www
export APACHE_RUN_GROUP=www
$ sudo sudo /etc/init.d/apache2 reload
#!/usr/bin/perl
print \"Content-Type: text/plain\
\
\";
print \"Hello World!\
\";