diff --git a/README.md b/README.md index f26c799..6b2b219 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,20 @@ -mod_go -====== - -Apache module for deploying web applications in Go \ No newline at end of file +mod_go +====== + +Apache module for deploying web applications in Go + +## Installation + +To install this module compile it and install it into Apache's modules directory by running: + + $ make + $ sudo make install + +Then activate it in Apache's httpd.conf file as follows: + + LoadModule go_module modules/mod_go.so + AddHandler golang .go + +Then restart Apache via + + $ apachectl restart