aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorPacien TRAN-GIRARD2013-04-17 14:51:51 +0200
committerPacien TRAN-GIRARD2013-04-17 14:51:51 +0200
commit8465bf703c826f778f915e80522ee7f1a07750b8 (patch)
treeeeae80bd67ebfe86516fefc013742113097cba06 /README.md
parentbe3d1e7f5bc99968d3386625b80f3fbf680db5a7 (diff)
downloadstaticweb-8465bf703c826f778f915e80522ee7f1a07750b8.tar.gz
First version.
Diffstat (limited to 'README.md')
-rw-r--r--README.md13
1 files changed, 12 insertions, 1 deletions
diff --git a/README.md b/README.md
index 2fb8ca5..f76488e 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,15 @@
1StaticWeb 1StaticWeb
2========= 2=========
3 3
4StaticWeb \ No newline at end of file 4StaticWeb is a basic static files web server written in Go.
5
6It automatically serves the content of the folder corresponding to the domain of the website.
7
8Usage
9-----
10
11``./StaticWeb -addr="[Address to listen: 127.0.0.1]" -port="[Port to listen: 80]" -dir="[Absolute or relative path to the root directory to serve: .]" -log="[Absolute or relative path to the log file. Leave empty for stdout]"``
12
13The program will serve the files in the folder (inside the given root directory) with the same name as the domain from which the request originated.
14
15To serve multiple sites with the same content, you can use symbolic links. \ No newline at end of file