diff options
author | pg9182 <96569817+pg9182@users.noreply.github.com> | 2022-11-19 02:24:00 -0500 |
---|---|---|
committer | pg9182 <96569817+pg9182@users.noreply.github.com> | 2022-11-19 02:24:00 -0500 |
commit | a305117cc8d178c65bc83dc26e154857590b4328 (patch) | |
tree | e026aafb63bb11b0d79fcd45f87dcadae66a47bc | |
parent | f5085cfb97649abfbfad472a74da6b438b4154bb (diff) | |
download | Atlas-a305117cc8d178c65bc83dc26e154857590b4328.tar.gz Atlas-a305117cc8d178c65bc83dc26e154857590b4328.zip |
pkg/atlas: Change default port to 8080
Northstar uses port 8081 by default for auth, which silently causes
issues when running both atlas and northstar on the same machine
with the default config.
-rw-r--r-- | pkg/atlas/config.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/atlas/config.go b/pkg/atlas/config.go index 5785d39..a0a8108 100644 --- a/pkg/atlas/config.go +++ b/pkg/atlas/config.go @@ -21,7 +21,7 @@ type UIDGID [2]int // ?=). All string arrays are comma-separated. type Config struct { // The addresses to listen on (comma-separated). - Addr []string `env:"ATLAS_ADDR?=:8081"` + Addr []string `env:"ATLAS_ADDR?=:8080"` // The addresses to listen on with TLS (comma-separated). AddrTLS []string `env:"ATLAS_ADDR_HTTPS"` |