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
2 changes: 2 additions & 0 deletions src/pages/selfhosted/environment-variables.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ These variables can override CLI flags at runtime. The naming convention is `NB_
| `NB_DNS_DOMAIN` | DNS domain for peers |
| `NB_DISABLE_GEOLITE_UPDATE` | Disable GeoLite database updates |
| `NB_SETUP_PAT_ENABLED` | Enable optional Personal Access Token creation from `/api/setup` during initial setup. See [Automated Setup](/selfhosted/automated-setup). |
| `NB_PPROF_ADDR` | The address of the Go pprof HTTP endpoint (e.g. `localhost:6060`). For profiling CPU, memory, and goroutine usage in production. |

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
| `NB_PPROF_ADDR` | The address of the Go pprof HTTP endpoint (e.g. `localhost:6060`). For profiling CPU, memory, and goroutine usage in production. |
| `NB_PPROF_ADDR` | Override the listen address for the Go pprof profiling endpoint (CPU, memory, goroutines). Enabled by default on `localhost:6060`. |


### Advanced Runtime Variables

Expand Down Expand Up @@ -153,6 +154,7 @@ These variables can override CLI flags at runtime. The naming convention is `NB_
| `NB_CERT_KEY` | TLS certificate key file |
| `NB_LOG_LEVEL` | Log level |
| `NB_LOG_FILE` | Log file path |
| `NB_PPROF_ADDR` | The address of the Go pprof HTTP endpoint (e.g. `localhost:6060`). For profiling CPU, memory, and goroutine usage in production. |

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
| `NB_PPROF_ADDR` | The address of the Go pprof HTTP endpoint (e.g. `localhost:6060`). For profiling CPU, memory, and goroutine usage in production. |
| `NB_PPROF_ADDR` | Override the listen address for the Go pprof profiling endpoint (CPU, memory, goroutines). Enabled by default on `localhost:6060`. |


## Relay Server Variables

Expand Down
Loading