Apache Server

The Apache Server is an excellent library for super simple traffic servers and proxies that is super simple and straightforward.

Installation

$ sudo yum install -y httpd # apt-get for Ubuntu
# Start the httpd service
$ sudo service httpd start
# Use chkconfig to enable service start at start-up for reboots in production
$ sudo chkconfig httpd on

Utilization

Simple HTML

Drop HTML content (as well as associated CSS and JS) into the var/www/html/ folder!

Last updated

Was this helpful?