forked from RedHatInsights/insights-chrome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Caddyfile
77 lines (72 loc) · 1.72 KB
/
Caddyfile
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
{
{$CADDY_TLS_MODE}
auto_https disable_redirects
}
:9000 {
metrics /metrics
}
:8000 {
{$CADDY_TLS_CERT}
log
@app_match {
path /apps/chrome*
}
handle @app_match {
uri strip_prefix /apps/chrome
file_server * {
root /opt/app-root/src/build/stable
index opt/app-root/src/build/stable/index.html
browse
}
}
@beta_match {
path /beta/apps/chrome*
}
handle @beta_match {
uri strip_prefix /beta/apps/chrome
file_server * {
root /opt/app-root/src/build/preview
index opt/app-root/src/build/preview/index.html
browse
}
}
@preview_match {
path /preview/apps/chrome*
}
handle @preview_match {
uri strip_prefix /preview/apps/chrome
file_server * {
root /opt/app-root/src/build/preview
index opt/app-root/src/build/preview/index.html
browse
}
}
@config_match {
path /config*
}
handle @config_match {
uri strip_prefix /config
uri strip_prefix /beta/config
uri strip_prefix /preview/config
file_server * {
root /opt/app-root/src/build
index opt/app-root/src/build/index.html
browse
}
}
handle /preview* {
root * /opt/app-root/src/build/preview
file_server
try_files {path} {path}/ /index.html
}
handle /beta* {
root * /opt/app-root/src/build/beta
file_server
try_files {path} {path}/ /index.html
}
handle * {
root * /opt/app-root/src/build/stable
file_server
try_files {path} {path}/ /index.html
}
}