-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCaddyfile
More file actions
84 lines (65 loc) · 1.28 KB
/
Caddyfile
File metadata and controls
84 lines (65 loc) · 1.28 KB
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
82
83
84
:{$PORT}
# http-api course
handle /http-api/echo {
reverse_proxy localhost:4010
}
handle /http-api-openapi* {
reverse_proxy localhost:4010
}
handle_path /http-api/* {
reverse_proxy localhost:4011
}
# http-protocol course
handle /http-protocol/example {
reverse_proxy localhost:4010
}
handle /http-protocol/login {
reverse_proxy localhost:4010
}
handle /http-protocol/stream {
reverse_proxy localhost:4010
}
handle /http-protocol/removed {
reverse_proxy localhost:4010
}
handle /http-protocol {
reverse_proxy localhost:4010
}
handle /http-protocol-openapi* {
reverse_proxy localhost:4010
}
handle_path /http-protocol/* {
reverse_proxy localhost:4012
}
# js-playwright course
handle /js-playwright/users-list {
reverse_proxy localhost:4010
}
handle /js-playwright-openapi* {
reverse_proxy localhost:4010
}
handle_path /js-playwright/* {
reverse_proxy localhost:4013
}
# postman course
handle /postman/cookie {
reverse_proxy localhost:4010
}
handle /postman-openapi* {
reverse_proxy localhost:4010
}
handle_path /postman/* {
reverse_proxy localhost:4014
}
# js-dom-testing-library course
handle /js-dom-testing-library/users-list {
reverse_proxy localhost:4010
}
# shared/static
handle /assets* {
reverse_proxy localhost:4010
}
# default
handle {
reverse_proxy localhost:4010
}