Is it possible to set the Fleet GUI to use a diffe...
# fleet
m
Is it possible to set the Fleet GUI to use a different port than 8080? I used fleetctl config set --address https://www.example.com --tls-skip-verify and when attempting to serve it I still see the 443 being used.
k
Hi @Mike S.! When you set values with
fleetctl config
, you're configuring
fleetctl
itself rather than the Fleet server. Is there a specific port you were wanting to serve Fleet from? What's the reason for that need?
m
Ahh right on.
z
The web frontend will use whichever port you type into the browser
(browsers use 443 for HTTPS by default)
m
Right - I was getting thrown off when I kept seeing 0.0.0.0:8080 when attempting to serve fleet.
z
Fleet will also serve on 8080 by default (in many environments you need root to bind to 443).
Typically your ELB will listen on 443 and forward to 8080 at Fleet
m
Ok.