-
Notifications
You must be signed in to change notification settings - Fork 0
/
Caddyfile
37 lines (31 loc) · 921 Bytes
/
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
{
# global options
admin off # theres no need for the admin api in railway's environment
persist_config off # storage isn't persistent anyway
auto_https off # railway handles https for us, this would cause issues if left enabled
log {
# runtime logs
format json # set runtime log format to json mode
}
servers {
# server options
trusted_proxies static private_ranges # trust railway's proxy
}
}
:{$PORT} {
# site block, listens on the $PORT environment variable, automatically assigned by railway
log {
# access logs
format json # set access log format to json mode
}
# health check for railway
respond /health 200
# serve from the 'dist' folder (Vite builds into the 'dist' folder)
root * dist
# enable gzipping responses
encode gzip
# serve files from 'dist'
file_server
# if path doesn't exist, redirect it to 'index.html' for client side routing
try_files {path} /index.html
}