You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
1.2 KiB

2 years ago
{
"root_folder": "./www",
2 years ago
"allowed_methods": ["GET", "POST", "PUT", "DELETE"],
2 years ago
"servers": [
{
"server_name": "localhost",
2 years ago
"listens": ["localhost:8080"],
"root": "public/",
"return": [301, "http://webserv.doc/"]
2 years ago
},
2 years ago
{
"server_name": "webserv.doc",
"listens": ["localhost"],
"root": "html/",
"indexs": ["index.html"],
"keepalive_requests": 20,
"error_pages": {
"/error3xx.html": [301, 302, 307, 308],
"/error4xx.html": [400, 403, 404, 405, 408, 413, 429]
}
},
{
"server_name": "localhost",
"root": "html/",
"indexs": ["index.html"]
2 years ago
},
2 years ago
{
2 years ago
"server_name": "narnaud.42.fr",
2 years ago
"listens": ["192.168.62.61:8080", "localhost", "555"],
2 years ago
"root": "public/html/",
2 years ago
"indexs": ["basique.html"],
"error_pages": {
"/error404.html": [404]
},
"cgi": {
2 years ago
".php": "/usr/bin/php-cgi",
".py": "/usr/bin/python"
},
2 years ago
"client_max_body_size": 10000,
"keepalive_time": 60,
"locations": {
2 years ago
"/docs/": {
"root": "public/resources/",
2 years ago
"autoindex": true
},
2 years ago
"/img/": {
"root": "public/resources/",
"autoindex": true
2 years ago
}
}
}
]
}