is there a way to run fleet on the standard https ...
# fleet
r
is there a way to run fleet on the standard https port (443)?
when I use server_address=0.0.0.0:443 I get a
permission error
as normal user (expected since it’s a priv port) and then
Failed to start: initializing service: initializing osquery logging: create filesystem status logger: create new raw logger: open /tmp/osquery_status: permission denied
if I run via sudo
m
@ryan yeh honestly I'd set up a reverse proxy using nginx. I'm going to do this myself, gives you a bit more control for e.g. you can split the SSL termination to present a Let's encrypt certificate for the web UI, yet still use your self signed cert for osquery daemons, etc.
🪄 1
1
z
Your first error is expected, however the second is very unusual -- A permission error on a file in
/tmp
when running as root? Can you share the full command and output?
z
Can you
sudo ls -l /tmp/osquery_status
and show the results? We are looking to see if there are unusual permissions on that file.