Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions .lychee.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ exclude = [
"^https://api\\.seatable\\.com/reference/",
# Links with .md extension (valid in MkDocs, 404 on live site checked separately)
"admin\\.seatable\\.com.*\\.md$",
# nip.io wildcard DNS (example/placeholder hostnames)
"nip\\.io",
]

# Accept these status codes as valid
Expand Down
5 changes: 3 additions & 2 deletions docs/installation/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,12 +171,13 @@ security headers vielleicth im Bereich Proxy.
You can run the following command **inside** the `seatable-server` container to restart all Gunicorn workers:

```bash
kill -HUP $(cat /opt/seatable/pids/dtable-web.pid)
kill -HUP $(cat /var/run/dtable-web.pid)
```

This sends a `SIGHUP` signal to the Gunicorn master process, whose PID is stored inside the file `/opt/seatable/pids/dtable-web.pid`.
This sends a `SIGHUP` signal to the Gunicorn master process, whose PID is stored inside the file `/var/run/dtable-web.pid`.
This allows you to apply changes to `dtable_web_settings.py` without causing downtime or aborting active WebSocket connections.

**Note:** In previous versions of SeaTable, the PID file was located at `/opt/seatable/pids/dtable-web.pid`.

<!--
- spaces in the COMPOSE_FILE
Expand Down
Loading