Skip to content

Products

Compliance Officer Service Expert-led compliance, end to end Compliance Portal Share security documents securely Open-source platform Deploy Probo on your own infrastructure

Resources

Probo stories How teams get compliant with Probo Blog Ideas and guidance from the Probo team Guides & tools Practical compliance guides and free tools Love from Customers What customers say about working with Probo Changelog Latest product updates Download Get the Probo Agent

Company

About The people and vision powering Probo Careers Join the team building Probo Brand assets Official logos and visual resources Security Review our security and compliance posture
Overview Understand Probo and its core concepts Product Explore Probo's GRC capabilities Developers Explore GraphQL, CLI, MCP, n8n, and webhooks Deployment Probo Cloud, self-hosting, and configuration

Explore

GitHub Explore our open-source compliance tools

Configuration

How probod loads configuration and how to manage persistent secrets

View as Markdown

probod loads a JSON or YAML configuration file passed with -cfg-file. Configuration is read at startup and is not hot-reloaded. After changing the file, restart every application instance for the new settings to take effect.

You can write and manage the configuration file directly. For container-based deployments, the official image can instead use probod-bootstrap to generate a YAML file from PROBOD_* environment variables before starting probod.

flowchart LR
    managed["JSON or YAML configuration"] --> probod["probod<br/>-cfg-file config"]
    environment["PROBOD_* environment variables"] --> bootstrap["probod-bootstrap"]
    bootstrap --> generated["Generated YAML configuration"]
    generated --> probod

probod-bootstrap is a one-time configuration generator. It exits after writing the file; it does not run beside probod, watch the environment, or reload configuration.

Some configuration keys protect persisted data or authentication state. Generate them before the first production start, use the same values on every application instance, and keep recoverable backups of them.

Setting Purpose Effect of replacing or losing it
Encryption key Encrypts sensitive application data Existing encrypted data becomes unreadable
Session cookie secret Signs authentication cookies Existing user sessions become invalid
Password pepper Protects stored password hashes Existing passwords can no longer be verified
OAuth 2.0 server signing key Signs tokens issued by Probo Previously issued tokens can no longer be verified