webserver:
listen_addr: "127.0.0.1"
listen_port: 8080
can I have UNIX socket for speed and security(so that others cannot try to use it)?
e.g.,
webserver:
listen_addr: "/tmp/ricky_certstream.sock" <--- the path must ends with ".sock"
listen_port: 0 <--- when using UNIX socket, there's no port to use
When certstream starts:
- Read config,
- If the listen_addr is UNIX socket, check the existence of the file
- If the sock file is exist, then certstream is running, exit.
- Listen on sock file
can I have
UNIX socketfor speed and security(so that others cannot try to use it)?e.g.,
When certstream starts: