forked from Kate-77/WebServer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.conf
81 lines (73 loc) · 1.65 KB
/
default.conf
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
71
72
73
74
75
76
77
78
79
80
81
server
{
listen localhost:8081;
server_name example;
root ./var;
client_max_body_size 2000000;
location /html
{
root ./var/www;
index index.html;
autoindex on;
limit_except GET POST;
upload_store on;
error_page 403 /error_pages/403.html;
error_page 404 /error_pages/404.html;
}
location /
{
root ./;
index index.html;
limit_except GET POST DELETE;
autoindex on;
upload_store on;
}
}
server
{
listen localhost:8082;
server_name test;
root ./var/www/;
location /html
{
root ./var/www;
index index.html;
autoindex on;
limit_except GET POST;
upload_store on;
error_page 403 /error_pages/403.html;
error_page 404 /error_pages/404.html;
}
location /
{
root ./;
index index.html;
limit_except GET POST DELETE;
autoindex on;
upload_store on;
}
}
server
{
listen localhost:8083;
server_name Hello;
root ./;
location /html
{
root ./var/www;
index index.html;
autoindex on;
limit_except GET POST;
upload_store on;
error_page 403 /error_pages/403.html;
error_page 404 /error_pages/404.html;
}
location /
{
root ./;
index index.html;
limit_except GET POST DELETE;
autoindex on;
upload_store on;
}
}