24 lines
474 B
Plaintext
24 lines
474 B
Plaintext
# Carbon Web Server Configuration File
|
|
# Lines starting with # are comments
|
|
|
|
# Server listening port
|
|
port = 8080
|
|
|
|
# Enable HTTPS (requires valid certificates in certs/ directory)
|
|
use_https = false
|
|
|
|
# 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
|