🔧 This is the official configuration reference for our system. Here you can find detailed explanations of all configurable parameters.

Core Configuration Parameters

  • server.listen
    ⚙️ Type: string
    📌 Description: Specifies the address and port the server binds to.
    📌 Example: "server.listen": "0.0.0.0:8080"

  • database.connection
    🗂️ Type: object
    📌 Description: Defines database connection settings.
    📌 Example:

    "database.connection": {
      "host": "localhost",
      "port": 5432,
      "username": "admin",
      "password": "secure_password"
    }
    
  • logging.level
    📝 Type: string
    📌 Description: Sets the logging verbosity (e.g., debug, info, warn).
    📌 Example: "logging.level": "debug"

configuration

Advanced Settings

For more details about configuration options, please check our Configuration Overview guide.
📌 Tip: Use environment variables to override default configurations.

advanced_configuration

Security Configuration

  • security.ssl.enabled
    🔒 Type: boolean
    📌 Description: Enables or disables SSL/TLS for secure communication.
    📌 Example: "security.ssl.enabled": true

  • security.csrf.protection
    ⚠️ Type: string
    📌 Description: Configures Cross-Site Request Forgery (CSRF) protection.
    📌 Example: "security.csrf.protection": "strict"

security_settings