Files
42_INT_12_webserv/42.config
Eric LAZO da5d1f38b0 merging
2022-08-17 19:45:37 +02:00

24 lines
298 B
Plaintext

server {
server_name server1;
listen 0.0.0.0:4040;
client_body_limit 1000;
index youpi.bla; # this is another comment
root ./YoupiBanane/;
error_page 404 ./www/error_pages/error_404.html;
location / {
allow_methods GET;
}
location /directory {
index youpi.bad_extention;
}
}