Files
webserv/exemples/test.toml
2025-04-14 12:11:37 +02:00

41 lines
747 B
TOML

log_file = "test.log"
[server]
server_names = { "localhost", "2B5.local" }
host = "localhost"
port = 8080
[server.error_pages]
404 = "not_found.html"
401 = "unauthorized.html"
402 = "uwu.html"
[server.location./]
methods = { "GET" }
root = "/var/www/html"
dirlist = true
client_max_body_size = "10M"
[server.location./api]
methods = { "GET", "POST" }
root = "/var/www/api"
upload_path = "/etc/webserv/up"
cgi.go = "/bin/go"
[server.location./redir]
redirect = "https://kanel.ovh"
[server1]
server_names = { "ptnnnn.local"}
host = "0.0.0.0"
port = 90
[server1.error_pages]
404 = "existepasfd***.html"
[server1.location./]
methods = { "GET", "DELETE" }
root = "/var/lib/docker/volumes/test_data/_data"
dirlist = false
cgi.py = "/bin/python"