forked from bram2w/baserow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Caddyfile
48 lines (39 loc) · 1.05 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
{
on_demand_tls {
ask {$PRIVATE_BACKEND_URL:localhost:8000}/api/builder/domains/ask-public-domain-exists/
interval 2m
burst 5
}
{$BASEROW_CADDY_GLOBAL_CONF}
}
{$BASEROW_CADDY_ADDRESSES} {
tls {
on_demand
}
@is_baserow_tool {
expression "{$BASEROW_PUBLIC_URL}".contains({http.request.host})
}
handle @is_baserow_tool {
handle /api/* {
reverse_proxy {$PRIVATE_BACKEND_URL:localhost:8000}
}
handle /ws/* {
reverse_proxy {$PRIVATE_BACKEND_URL:localhost:8000}
}
handle_path /media/* {
@downloads {
query dl=*
}
header @downloads Content-disposition "attachment; filename={query.dl}"
file_server {
root {$MEDIA_ROOT:/baserow/media/}
}
}
handle_path /static/* {
file_server {
root {$STATIC_ROOT:/baserow/static/}
}
}
}
reverse_proxy {$PRIVATE_WEB_FRONTEND_URL:localhost:3000}
}