Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions deployment/system-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,21 @@ Specifies the file permission in the octal format.

Specifies the directory permission in the octal format.

### `umask`

| type | default | version |
| :--- | :--- | :--- |
| string | nil | 1.20.0 |

Specifies the umask in the octal format.
This is the configuration-file equivalent of the `--umask` command-line option.
If `--umask` is also given on the command line, the command-line value takes precedence.

The `umask` affects the permission of files that Fluentd creates (such as buffer files).
Whether it applies to worker-created files depends on the run mode:
* `--no-supervisor` (standalone) or daemonized (`--daemon`): applied.
* Supervisor in the foreground (without `--daemon`): not applied.

### `strict_config_value`

| type | default | version |
Expand Down