From 0b206129ac1e9f38c537a590487785f1c5cdbfb2 Mon Sep 17 00:00:00 2001 From: Sergey Lyubka Date: Wed, 26 Dec 2012 12:21:18 +0000 Subject: [PATCH] Update README.md --- README.md | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 49995705..709ef7cf 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,16 @@ Overview -------- -Mongoose is easy to use web server. It also can be used as embedded web server library to provide web interface to applications. - -Mongoose executable does not depend on any external library or configuration. If it is copied to any directory and launched from there, it starts to serve that directory on port 8080 (so to access files, go to http://localhost:8080). If some additional config is required - for example, different listening port or IP-based access control, that can be done via command line flags or configuration file, which should be created in the same directory where mongoose itself lives. This makes Mongoose perfect for all sorts of demos, quick tests, file sharing, and Web programming. +Mongoose is easy to use web server. It also can be used as embedded web server +library to provide web interface to applications. Mongoose executable does not +depend on any external library or configuration. If it is copied to any directory +and launched from there, it starts to serve that directory on port 8080 (so to access +files, go to http://localhost:8080). If some additional config is required - for +example, different listening port or IP-based access control, that can be done via +command line flags or configuration file, which should be created in the same +directory where mongoose itself lives. This makes Mongoose perfect for all sorts +of demos, quick tests, file sharing, and Web programming. +See [manual](https://github.com/valenok/mongoose/wiki/Manual) for more information. Features