Commit b5dc1dde authored by Matthew Holt's avatar Matthew Holt

Updated README

parent 63b39c78
...@@ -3,13 +3,15 @@ Meet caddy ...@@ -3,13 +3,15 @@ Meet caddy
Caddy is a web server for your files like Apache, nginx, or lighttpd, but with different goals, features, and advantages. Caddy is a web server for your files like Apache, nginx, or lighttpd, but with different goals, features, and advantages.
*Note:* This software is pre-1.0. Don't use it in production (yet). *Note:* This software is pre-1.0 and under rapid development. Don't use it in production (yet).
### Features ### Features
- HTTP/1.1 and HTTP/2
- TLS - TLS
- FastCGI (mostly for PHP sites) - FastCGI
- WebSockets - WebSockets
- Markdown
- IPv4 and IPv6 support - IPv4 and IPv6 support
- Gzip - Gzip
- Custom headers - Custom headers
...@@ -19,19 +21,21 @@ Caddy is a web server for your files like Apache, nginx, or lighttpd, but with d ...@@ -19,19 +21,21 @@ Caddy is a web server for your files like Apache, nginx, or lighttpd, but with d
- Multi-core - Multi-core
- + more - + more
Caddy is designed to be super-easy to use and configure. Caddy is designed to be super-easy to use and configure. Full documentation coming soon.
### Run Caddy ### Run Caddy in 10 Seconds
1. Download or build it 1. Run `go get github.com/mholt/caddy`
2. `cd` into a directory you want to serve 2. `cd` into your website's directory
3. `./caddy` 3. Run `caddy` (assumes `$GOPATH/bin` is in your `$PATH`)
Caddy will, by default, serve the current working directory on [http://localhost:8080](http://localhost:8080) (the default port will change before version 1.0). Caddy will, by default, serve the current working directory on [http://localhost:8080](http://localhost:8080) (the default port will change before version 1.0).
When announced, there will be builds of Caddy available for all platforms.
### Configuring Caddy ### Configuring Caddy
Use a Caddyfile to configure Caddy. If the current directory has a file called `Caddyfile`, it will be loaded and parsed and used as configuration. Use a Caddyfile to configure Caddy. If the current directory has a file called `Caddyfile`, it will be loaded and parsed and used as configuration. Or you can specify the location of the file using the `-conf` flag.
A Caddyfile always starts with an address to bind to. The rest of the lines are configuration directives. Here's an example: A Caddyfile always starts with an address to bind to. The rest of the lines are configuration directives. Here's an example:
...@@ -40,9 +44,10 @@ mydomain.com:80 ...@@ -40,9 +44,10 @@ mydomain.com:80
gzip gzip
ext .html ext .html
header /api Access-Control-Allow-Origin * header /api Access-Control-Allow-Origin *
browse /files /home/myuser/template.tpl
``` ```
This simple file enables gzip compression, serves clean URLs, and adds the coveted `Access-Control-Allow-Origin: *` header to all requests starting with `/api`. Wow! Caddy can do a lot with just four lines. This simple file enables compression, serves clean URLs, adds the coveted `Access-Control-Allow-Origin: *` header to all requests starting with `/api`, and enables file browsing in `/files` using a custom HTML template. Wow! Caddy can do a lot with just a few lines.
Maybe you want to serve both HTTP and HTTPS. You can define multiple (virtual) hosts using curly braces: Maybe you want to serve both HTTP and HTTPS. You can define multiple (virtual) hosts using curly braces:
...@@ -50,7 +55,6 @@ Maybe you want to serve both HTTP and HTTPS. You can define multiple (virtual) h ...@@ -50,7 +55,6 @@ Maybe you want to serve both HTTP and HTTPS. You can define multiple (virtual) h
mydomain.com:80 { mydomain.com:80 {
gzip gzip
ext .html ext .html
header /api Access-Control-Allow-Origin *
} }
mydomain.com:443 { mydomain.com:443 {
...@@ -58,16 +62,14 @@ mydomain.com:443 { ...@@ -58,16 +62,14 @@ mydomain.com:443 {
} }
``` ```
For more details, including which directives you can use to configure Caddy, see [the wiki](https://github.com/mholt/caddy/wiki). More documentation and rigorous tests are on their way as this program matures and leaves the experimental phase. Lots of refinements are planned and well on their way to becoming a reality.
Better documentation (and rigorous tests) are on their way as the program matures and leaves the experimental phase.
### Contributing ### Contributing
Please get involved! Before adding a new feature or changing existing behavior, open an issue to discuss it. For other non-breaking changes and bug fixes, pull requests are accepted. You can also drop a quick [tweet to @mholt6](https://twitter.com/mholt6) for quick feedback or comments. Please get involved! Before adding a new feature or changing existing behavior, open an issue to discuss it. For non-breaking changes and bug fixes, pull requests are accepted. You can also drop a quick [tweet to @mholt6](https://twitter.com/mholt6) for quick feedback or comments.
### About the project ### About the project
Caddy was born out of the need for a lightweight but configurable web server that didn't have to be "installed" and was readily available for any platform. Caddy took some inspiration from nginx, lighttpd, Websocketd, and Vagrant, and provides a pleasant mixture of the handy features from each of them. Caddy is suitable for use in both dev and production environments. Caddy was born out of the need for a "batteries-included" web server that runs anywhere and doesn't have to take its configuration with it. Caddy took some inspiration from nginx, lighttpd, Websocketd, and Vagrant, and provides a pleasant mixture of features from each of them. Once announced, Caddy will be suitable for use in both dev and production environments.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment