mirror of
https://github.com/caddyserver/caddy.git
synced 2025-02-01 13:54:00 +08:00
Version 0.8.0
This commit is contained in:
parent
fd14f257df
commit
5b93799a62
6
dist/CHANGES.txt
vendored
6
dist/CHANGES.txt
vendored
|
@ -1,8 +1,8 @@
|
|||
CHANGES
|
||||
|
||||
0.8 beta
|
||||
- Let's Encrypt (free, automatic, fully-managed HTTPS for your sites)
|
||||
- Graceful restarts (for POSIX-compatible systems)
|
||||
0.8.0 (December 4, 2015)
|
||||
- HTTPS by default via Let's Encrypt (certs & keys are fully managed)
|
||||
- Graceful restarts (on POSIX-compliant systems)
|
||||
- Major internal refactoring to allow use of Caddy as library
|
||||
- New directive 'mime' to customize Content-Type based on file extension
|
||||
- New -accept flag to accept Let's Encrypt SA without prompt
|
||||
|
|
2
dist/README.txt
vendored
2
dist/README.txt
vendored
|
@ -1,4 +1,4 @@
|
|||
CADDY 0.8 beta 4
|
||||
CADDY 0.8
|
||||
|
||||
Website
|
||||
https://caddyserver.com
|
||||
|
|
4
main.go
4
main.go
|
@ -26,13 +26,13 @@ var (
|
|||
|
||||
const (
|
||||
appName = "Caddy"
|
||||
appVersion = "0.8 beta 4"
|
||||
appVersion = "0.8"
|
||||
)
|
||||
|
||||
func init() {
|
||||
caddy.TrapSignals()
|
||||
flag.BoolVar(&letsencrypt.Agreed, "agree", false, "Agree to Let's Encrypt Subscriber Agreement")
|
||||
flag.StringVar(&letsencrypt.CAUrl, "ca", "https://acme-staging.api.letsencrypt.org/directory", "Certificate authority ACME server")
|
||||
flag.StringVar(&letsencrypt.CAUrl, "ca", "https://acme-v01.api.letsencrypt.org/directory", "Certificate authority ACME server")
|
||||
flag.StringVar(&conf, "conf", "", "Configuration file to use (default="+caddy.DefaultConfigFile+")")
|
||||
flag.StringVar(&cpu, "cpu", "100%", "CPU cap")
|
||||
flag.StringVar(&letsencrypt.DefaultEmail, "email", "", "Default Let's Encrypt account email address")
|
||||
|
|
Loading…
Reference in New Issue
Block a user