Files
Carbon/server.conf
2025-10-02 21:46:42 +00:00

30 lines
587 B
Plaintext

# Carbon Web Server Configuration File
# Lines starting with # are comments
# Server listening port
port = 443
# Enable HTTPS (requires valid certificates in certs/ directory)
use_https = true
# Log file location
log_file = log/server.log
# Maximum number of worker threads
max_threads = 4
# Server running state
running = true
# Server name or IP address (used for logging and response headers)
server_name = Your_domain/IP
# Enable verbose logging
verbose = true
# Enable HTTP/2 support (requires HTTPS)
enable_http2 = true
# Enable WebSocket support
enable_websocket = false