
Some checks failed
CI/CD Pipeline / Test Suite (push) Has been cancelled
CI/CD Pipeline / Security Audit (push) Has been cancelled
CI/CD Pipeline / Build Docker Image (push) Has been cancelled
CI/CD Pipeline / Deploy to Staging (push) Has been cancelled
CI/CD Pipeline / Deploy to Production (push) Has been cancelled
CI/CD Pipeline / Performance Benchmarks (push) Has been cancelled
CI/CD Pipeline / Cleanup (push) Has been cancelled
31 lines
746 B
TOML
31 lines
746 B
TOML
# Base Server Configuration
|
|
# This file contains the core server settings that are common across all environments
|
|
|
|
[server]
|
|
protocol = "http" # "http" or "https" - will be overridden in production
|
|
host = "127.0.0.1"
|
|
port = 3030
|
|
log_level = "info" # "trace", "debug", "info", "warn", "error"
|
|
|
|
# TLS Configuration (only used when protocol = "https")
|
|
[server.tls]
|
|
cert_path = "certs/server.crt"
|
|
key_path = "certs/server.key"
|
|
|
|
# Static Files Configuration
|
|
[static]
|
|
assets_dir = "public"
|
|
site_root = "target/site"
|
|
site_pkg_dir = "pkg"
|
|
|
|
# Server Directories Configuration
|
|
[server_dirs]
|
|
public_dir = "public"
|
|
uploads_dir = "uploads"
|
|
logs_dir = "logs"
|
|
temp_dir = "tmp"
|
|
cache_dir = "cache"
|
|
config_dir = "config"
|
|
data_dir = "data"
|
|
backup_dir = "backups"
|