mirror of
https://github.com/daeuniverse/dae.git
synced 2025-02-08 01:54:22 +07:00
![Kevin Yu](/assets/img/avatar_default.png)
* refactor(/docs): rework documentation structure layout * refactor(/docs): update file reference paths * feat(/docs): add English version of other-proxy-protocol.md * refacotr: move docs/templates/ docs/sync/ to hack/ * fix(example.dae|readme): update ref link to adopt new file structure * refactor: rename other-proxy-protocol.md -> proxy-protocols.md * docs(readme): add ref to proxy-protocols.md * feat(/docs): add English version of how-it-works.md * refactor: rename how-it-works; add nav links * fix: fix linting errors * fix: fix linting errors --------- Co-authored-by: earrmouth <43926351+earrmouth@users.noreply.github.com>
30 lines
536 B
Markdown
30 lines
536 B
Markdown
# Reload and Suspend
|
|
|
|
dae supports configuration reloading and program suspending, which can help you save a lot of time when modifying the configuration or temporarily suspend dae.
|
|
|
|
## Reload
|
|
|
|
Generally, dae won't interrupt connections when reloading configuration. And reloading is much faster than restarting.
|
|
|
|
Usage:
|
|
|
|
```shell
|
|
dae reload
|
|
```
|
|
|
|
## Suspend
|
|
|
|
It will be useful if you want to suspend dae temporarily and recover it later.
|
|
|
|
## Usage
|
|
|
|
```shell
|
|
dae suspend
|
|
```
|
|
|
|
If you want to recover, use reload:
|
|
|
|
```shell
|
|
dae reload
|
|
```
|