forked from Hattaki-Hajar/webserv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config
70 lines (62 loc) · 1.48 KB
/
config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
server {
listen 127.0.0.1:1234;
root /nfs/homes/aharrass/webserv;
client_max_body_size 500000000;
#error_page 404 /nfs/homes/aharrass/webserv/index.php;
#index index.html;
location / {
allow GET;
allow POST;
allow DELETE;
#index index.php;
#upload /nfs/homes/aharrass/webserv/;
cgi php /usr/bin/php-cgi;
cgi py /usr/bin/python3;
autoindex on;
#return 301 index.php;
}
location /webserv {
root /nfs/homes/aharrass;
#index index.html;
autoindex on;
allow POST;
allow GET;
allow DELETE;
cgi php /usr/bin/php-cgi;
#upload /nfs/homes/aharrass/webserv;
return 301 indasdaksjhdashdex.php;
}
location /42 {
root /nfs/homes/aharrass/webserv;
index index.html;
autoindex on;
allow POST;
allow GET;
allow DELETE;
cgi php /usr/bin/php-cgi;
#upload /nfs/homes/aharrass/webserv;
#return 301 https://www.youtube.com;
}
location /aharrass {
root /nfs/sgoinfre/goinfre/Perso;
autoindex on;
allow GET;
allow POST;
allow DELETE;
}
location /test/barr {
root /var/www;
allow GET;
index index1.html;
autoindex on;
}
}
server {
listen 127.0.0.2:1234;
server_name test1.com;
root /nfs/homes/ohalim;
index index.html;
location / {
autoindex on;
}
}