From 61b5a15477aadaf8859153c955f42dd8ed38a13b Mon Sep 17 00:00:00 2001 From: Matt Holt Date: Mon, 19 Jan 2015 16:08:19 -0700 Subject: [PATCH] Initial Home page --- Home.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Home.md diff --git a/Home.md b/Home.md new file mode 100644 index 0000000..e3b6ebc --- /dev/null +++ b/Home.md @@ -0,0 +1,27 @@ +Caddy +===== + +Caddy is a general-purpose web server that's easy to use. + +Quick Start +------------ + +To start a static file server in the current directory, get Caddy and run: + +``` +$ caddy +``` + +Then load localhost:8080 in your browser. + +Chances are, though, that you want to serve pages under a different hostname (your domain) and port (80 or 443). + +1. Make a file called `Caddyfile` with these contents: + +``` +mydomain.com:80 +``` + +2. Run `caddy`. If the Caddyfile isn't in the current directory, specify the path: `caddy -conf=/path/to/Caddyfile` + +3. To configure Caddy further, refer to the Caddyfile documentation. \ No newline at end of file