update/fix description of the subprocess and what they do

This commit is contained in:
Omar Polo 2024-01-11 10:43:03 +00:00
parent 84285be948
commit 13f900092d
1 changed files with 4 additions and 4 deletions

View File

@ -135,13 +135,13 @@ splitted into multiple processes:
- main: the main process is the only one that keeps the original - main: the main process is the only one that keeps the original
privileges. It opens the TLS certificates on the behalf of the privileges. It opens the TLS certificates on the behalf of the
`server` and `crypto` processes and reloads the configuration upon `server` and `crypto` processes, reloads the configuration upon
`SIGHUP`. `SIGHUP` and re-opens the log files upon `SIGUSR1`.
- logger: handles the logging with syslog and/or local files. - logger: handles the logging with syslog and/or local files.
- server: listen on the binded ports and serves the request. This - server: listens for connections and serves the request. It also
also include speaking FastCGI and proxying requests. speaks FastCGI and do the proxying.
- crypto: holds the TLS private keys to avoid a compromised `server` - crypto: holds the TLS private keys to avoid a compromised `server`
process to disclose them. process to disclose them.