mirror of https://github.com/caddyserver/caddy.git
docs: Minor improvements
This commit is contained in:
parent
bae4f15fad
commit
e3a8f72f1c
|
@ -35,7 +35,9 @@ import (
|
|||
type Server struct {
|
||||
// Socket addresses to which to bind listeners. Accepts
|
||||
// [network addresses](/docs/conventions#network-addresses)
|
||||
// that may include port ranges.
|
||||
// that may include port ranges. Listener addresses must
|
||||
// be unique; they cannot be repeated across all defined
|
||||
// servers.
|
||||
Listen []string `json:"listen,omitempty"`
|
||||
|
||||
// A list of listener wrapper modules, which can modify the behavior
|
||||
|
|
|
@ -26,6 +26,7 @@ func init() {
|
|||
|
||||
// FileStorage is a certmagic.Storage wrapper for certmagic.FileStorage.
|
||||
type FileStorage struct {
|
||||
// The base path to the folder used for storage.
|
||||
Root string `json:"root,omitempty"`
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue