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.

40 lines
817 B

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/",
2 years ago
"return": "301 https://$host$uri"
},
2 years ago
{
"server_name": "webserv.doc",
"listens": ["localhost"],
"root": "html/",
"indexs": ["index.html"]
},
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"],
"cgi": {
2 years ago
".php": "/usr/bin/php",
".py": "/usr/bin/python"
},
2 years ago
"client_max_body_size": 10000,
"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
}
}
}
]
}