This commit is contained in:
Eric LAZO
2022-08-17 19:45:37 +02:00
parent 4fdbb1e0eb
commit da5d1f38b0
8 changed files with 205 additions and 32 deletions

23
42.config Normal file
View File

@@ -0,0 +1,23 @@
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;
}
}