Skip to content
Snippets Groups Projects
Unverified Commit 1caf16a4 authored by Dirk Klimpel's avatar Dirk Klimpel Committed by GitHub
Browse files

Add `worker_manhole` to configuration manual (#14824)

Closes: #13643
parent d344bc8b
No related branches found
No related tags found
No related merge requests found
Add `worker_manhole` to configuration manual.
\ No newline at end of file
......@@ -4029,6 +4029,27 @@ worker_listeners:
resources:
- names: [client, federation]
```
---
### `worker_manhole`
A worker may have a listener for [`manhole`](../../manhole.md).
It allows server administrators to access a Python shell on the worker.
Example configuration:
```yaml
worker_manhole: 9000
```
This is a short form for:
```yaml
worker_listeners:
- port: 9000
bind_addresses: ['127.0.0.1']
type: manhole
```
It needs also an additional [`manhole_settings`](#manhole_settings) configuration.
---
### `worker_daemonize`
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment