Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Doc] Add missing server options. #1711

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
20 changes: 20 additions & 0 deletions digdag-docs/src/command_reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,26 @@ Runs a digdag server. --memory or --database option is required. Examples:

Example: ``-c digdag-server/server.properties``

:command:`-L, --log PATH`
Configuration output log messages to a file. (default: ``-``)

Example: ``-L path/to/log``

:command:`-l, --log-level LEVEL`
Configuration log level(``error``, ``warn``, ``info``, ``debug`` or ``trace``).

Example: ``-l debug``

:command:`--admin-port PORT`
Configuration port number to bind admin api on (default: no admin port).

Example: ``--admin-port 9999``

:command:`--admin-bind ADDRESS`
Configuration IP address to bind admin api on (default: same address with `--bind`).

Example: ``--admin-bind 192.168.10.10``


In the config file, following parameters are available

Expand Down