summaryrefslogtreecommitdiff
path: root/modules/caddyhttp/fileserver/command.go
diff options
context:
space:
mode:
authorMatthew Holt <mholt@users.noreply.github.com>2019-11-16 10:44:45 -0700
committerMatthew Holt <mholt@users.noreply.github.com>2019-11-16 10:44:45 -0700
commit9fe54e1c6025a45cdd531c093bb94d193a8b91a0 (patch)
treef626e93f4cba647db20fb04f3a6dfa5d5610a6d1 /modules/caddyhttp/fileserver/command.go
parentb43e986a526c9de83c04c29bc530f1d711a40997 (diff)
file_server: Use HTTPS port when a qualifying domain is specified
Also little comment cleanups
Diffstat (limited to 'modules/caddyhttp/fileserver/command.go')
-rw-r--r--modules/caddyhttp/fileserver/command.go17
1 files changed, 12 insertions, 5 deletions
diff --git a/modules/caddyhttp/fileserver/command.go b/modules/caddyhttp/fileserver/command.go
index 17274da..b861a99 100644
--- a/modules/caddyhttp/fileserver/command.go
+++ b/modules/caddyhttp/fileserver/command.go
@@ -18,12 +18,14 @@ import (
"encoding/json"
"flag"
"log"
+ "strconv"
"github.com/caddyserver/caddy/v2"
"github.com/caddyserver/caddy/v2/caddyconfig"
"github.com/caddyserver/caddy/v2/caddyconfig/httpcaddyfile"
caddycmd "github.com/caddyserver/caddy/v2/cmd"
"github.com/caddyserver/caddy/v2/modules/caddyhttp"
+ "github.com/mholt/certmagic"
)
func init() {
@@ -36,12 +38,13 @@ func init() {
A simple but production-ready file server. Useful for quick deployments,
demos, and development.
-If a qualifying hostname is specified with --domain, the server will use
-HTTPS if domain validation succeeds. Ensure A/AAAA records are properly
-configured before using this option.
-
The listener's socket address can be customized with the --listen flag.
+If a qualifying hostname is specified with --domain, the default listener
+address will be changed to the HTTPS port and the server will use HTTPS
+if domain validation succeeds. Ensure A/AAAA records are properly
+configured before using this option.
+
If --browse is enabled, requests for folders without an index file will
respond with a file listing.`,
Flags: func() *flag.FlagSet {
@@ -83,7 +86,11 @@ func cmdFileServer(fs caddycmd.Flags) (int, error) {
Routes: caddyhttp.RouteList{route},
}
if listen == "" {
- listen = ":" + httpcaddyfile.DefaultPort
+ if certmagic.HostQualifies(domain) {
+ listen = ":" + strconv.Itoa(certmagic.HTTPSPort)
+ } else {
+ listen = ":" + httpcaddyfile.DefaultPort
+ }
}
server.Listen = []string{listen}