Skip to content

Commit

Permalink
Restore 4443 as default port for '-scheme http' as before PR fsouza#1215
Browse files Browse the repository at this point in the history
  • Loading branch information
raz-amir committed Aug 1, 2023
1 parent a33604b commit e9b49b6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
10 changes: 3 additions & 7 deletions internal/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ func Load(args []string) (Config, error) {
fs.StringVar(&cfg.Host, "host", "0.0.0.0", "host to bind to")
fs.StringVar(&cfg.Seed, "data", "", "where to load data from (provided that the directory exists)")
fs.StringVar(&allowedCORSHeaders, "cors-headers", "", "comma separated list of headers to add to the CORS allowlist")
fs.UintVar(&cfg.Port, flagPort, 0, "port to which https (default 4443) or http (default 8000) will be bound, based on the specified scheme. If the scheme is 'both', then bind to https")
fs.UintVar(&cfg.Port, "port", defaultHTTPSPort, "port to bind to")
fs.UintVar(&cfg.PortHTTP, flagPortHTTP, 0, "used only when scheme is 'both' as the port to bind http to (default 8000)")
fs.StringVar(&cfg.event.pubsubProjectID, "event.pubsub-project-id", "", "project ID containing the pubsub topic")
fs.StringVar(&cfg.event.pubsubTopic, "event.pubsub-topic", "", "pubsub topic name to publish events on")
Expand All @@ -102,13 +102,9 @@ func Load(args []string) (Config, error) {
setFlags[f.Name] = f.Value
})

// setting default values, if not provided, for port and http ports based on scheme value
// setting default values, if not provided, for port - mind that the default port is 4443 regardless of the scheme
if _, ok := setFlags[flagPort]; !ok {
if cfg.Scheme == schemeHTTPS || cfg.Scheme == schemeBoth {
cfg.Port = defaultHTTPSPort
} else if cfg.Scheme == schemeHTTP {
cfg.Port = defaultHTTPPort
}
cfg.Port = defaultHTTPSPort
}

if _, ok := setFlags[flagPortHTTP]; !ok && cfg.Scheme == schemeBoth {
Expand Down
4 changes: 2 additions & 2 deletions internal/config/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,10 @@ func TestLoadConfig(t *testing.T) {
backend: "filesystem",
fsRoot: "/storage",
publicHost: "storage.googleapis.com",
externalURL: "http://0.0.0.0:8000",
externalURL: "http://0.0.0.0:4443",
allowedCORSHeaders: nil,
Host: "0.0.0.0",
Port: 8000,
Port: 4443,
PortHTTP: 0,
Scheme: "http",
event: EventConfig{
Expand Down

0 comments on commit e9b49b6

Please sign in to comment.