mirror of
https://github.com/caddyserver/caddy.git
synced 2024-12-23 22:27:38 -05:00
commit
eddb6f0a79
1 changed files with 5 additions and 5 deletions
10
README.md
10
README.md
|
@ -6,8 +6,8 @@ Caddy is a general-purpose web server for Windows, Mac, Linux, BSD, and
|
||||||
[Android](https://github.com/mholt/caddy/wiki/Running-Caddy-on-Android). It is
|
[Android](https://github.com/mholt/caddy/wiki/Running-Caddy-on-Android). It is
|
||||||
a capable but easier alternative to other popular web servers.
|
a capable but easier alternative to other popular web servers.
|
||||||
|
|
||||||
[Releases](https://github.com/mholt/caddy/releases) ·
|
[Releases](https://github.com/mholt/caddy/releases) ·
|
||||||
[User Guide](https://caddyserver.com/docs) ·
|
[User Guide](https://caddyserver.com/docs) ·
|
||||||
[Community](https://forum.caddyserver.com)
|
[Community](https://forum.caddyserver.com)
|
||||||
|
|
||||||
|
|
||||||
|
@ -50,7 +50,7 @@ pre-built binaries
|
||||||
`curl https://getcaddy.com | bash`
|
`curl https://getcaddy.com | bash`
|
||||||
|
|
||||||
Once `caddy` is in your PATH, you can `cd` to your website's folder and run
|
Once `caddy` is in your PATH, you can `cd` to your website's folder and run
|
||||||
`caddy` to serve it. By default, Caddy serves the current directory at
|
`caddy` to serve it. By default, Caddy serves the current directory at
|
||||||
[localhost:2015](http://localhost:2015).
|
[localhost:2015](http://localhost:2015).
|
||||||
|
|
||||||
To customize how your site is served, create a file named Caddyfile by your
|
To customize how your site is served, create a file named Caddyfile by your
|
||||||
|
@ -71,7 +71,7 @@ header /api Access-Control-Allow-Origin *
|
||||||
When you run `caddy` in that directory, it will automatically find and use
|
When you run `caddy` in that directory, it will automatically find and use
|
||||||
that Caddyfile to configure itself.
|
that Caddyfile to configure itself.
|
||||||
|
|
||||||
This simple file enables compression, allows directory browsing (for folders
|
This simple file enables compression, allows directory browsing (for folders
|
||||||
without an index file), hosts a WebSocket echo server at /echo, serves clean
|
without an index file), hosts a WebSocket echo server at /echo, serves clean
|
||||||
URLs, logs requests to access.log, proxies all API requests to a backend on
|
URLs, logs requests to access.log, proxies all API requests to a backend on
|
||||||
port 7005, and adds the coveted `Access-Control-Allow-Origin: *` header for
|
port 7005, and adds the coveted `Access-Control-Allow-Origin: *` header for
|
||||||
|
@ -97,7 +97,7 @@ the [CLI documentation](https://caddyserver.com/docs/cli) for details.
|
||||||
|
|
||||||
Note: You will need **[Go 1.6](https://golang.org/dl/)** or newer.
|
Note: You will need **[Go 1.6](https://golang.org/dl/)** or newer.
|
||||||
|
|
||||||
1. `go get github.com/mholt/caddy`
|
1. `go get github.com/mholt/caddy/caddy`
|
||||||
2. `cd` into your website's directory
|
2. `cd` into your website's directory
|
||||||
3. Run `caddy` (assumes `$GOPATH/bin` is in your `$PATH`)
|
3. Run `caddy` (assumes `$GOPATH/bin` is in your `$PATH`)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue