From 342ef6c3d64b11271dbab115cefe5d99c406d975 Mon Sep 17 00:00:00 2001 From: Ivan Daunis Date: Fri, 7 Dec 2012 17:48:32 -0500 Subject: [PATCH] Installation --- README.md | 24 ++++++++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) 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