mirror of
https://github.com/caddyserver/caddy.git
synced 2025-07-09 03:04:57 -04: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
|
CHANGES
|
||||||
|
|
||||||
0.8 beta
|
0.8.0 (December 4, 2015)
|
||||||
- Let's Encrypt (free, automatic, fully-managed HTTPS for your sites)
|
- HTTPS by default via Let's Encrypt (certs & keys are fully managed)
|
||||||
- Graceful restarts (for POSIX-compatible systems)
|
- Graceful restarts (on POSIX-compliant systems)
|
||||||
- Major internal refactoring to allow use of Caddy as library
|
- Major internal refactoring to allow use of Caddy as library
|
||||||
- New directive 'mime' to customize Content-Type based on file extension
|
- New directive 'mime' to customize Content-Type based on file extension
|
||||||
- New -accept flag to accept Let's Encrypt SA without prompt
|
- 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
|
Website
|
||||||
https://caddyserver.com
|
https://caddyserver.com
|
||||||
|
4
main.go
4
main.go
@ -26,13 +26,13 @@ var (
|
|||||||
|
|
||||||
const (
|
const (
|
||||||
appName = "Caddy"
|
appName = "Caddy"
|
||||||
appVersion = "0.8 beta 4"
|
appVersion = "0.8"
|
||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
caddy.TrapSignals()
|
caddy.TrapSignals()
|
||||||
flag.BoolVar(&letsencrypt.Agreed, "agree", false, "Agree to Let's Encrypt Subscriber Agreement")
|
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(&conf, "conf", "", "Configuration file to use (default="+caddy.DefaultConfigFile+")")
|
||||||
flag.StringVar(&cpu, "cpu", "100%", "CPU cap")
|
flag.StringVar(&cpu, "cpu", "100%", "CPU cap")
|
||||||
flag.StringVar(&letsencrypt.DefaultEmail, "email", "", "Default Let's Encrypt account email address")
|
flag.StringVar(&letsencrypt.DefaultEmail, "email", "", "Default Let's Encrypt account email address")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user