web/CaddyfileDev

169 lines
3.4 KiB
Text
Raw Normal View History

2024-01-31 00:48:20 +00:00
:6752 {
# header Server "nginx"
encode gzip
header -Server
handle_path /android-chrome-192x192.png {
root * ./static/android-chrome-192x192.png
2024-01-31 00:48:20 +00:00
file_server
}
handle_path /android-chrome-512x512.png {
root * ./static/android-chrome-512x512.png
2024-01-31 00:48:20 +00:00
file_server
}
handle_path /apple-touch-icon.png {
root * ./static/apple-touch-icon.png
2024-01-31 00:48:20 +00:00
file_server
}
2024-02-01 23:14:18 +00:00
handle_path /browserconfig.xml {
root * ./static/browserconfig.xml
2024-01-31 00:48:20 +00:00
file_server
}
handle_path /favicon-16x16.png {
root * ./static/favicon-16x16.png
2024-01-31 00:48:20 +00:00
file_server
}
2024-02-01 23:14:18 +00:00
handle_path /favicon-32x32.png {
root * ./static/favicon-32x32.png
2024-01-31 00:48:20 +00:00
file_server
}
handle_path /favicon.ico {
root * ./static/favicon.ico
2024-01-31 00:48:20 +00:00
file_server
}
2024-02-01 23:14:18 +00:00
handle_path /humans.txt {
root * ./static/humans.txt
2024-01-31 00:48:20 +00:00
file_server
}
handle_path /mstile-144x144.png {
root * ./static/mstile-144x144.png
2024-01-31 00:48:20 +00:00
file_server
}
handle_path /mstile-150x150.png {
root * ./static/mstile-150x150.png
2024-01-31 00:48:20 +00:00
file_server
}
handle_path /mstile-310x150.png {
root * ./static/mstile-310x150.png
2024-01-31 00:48:20 +00:00
file_server
}
handle_path /mstile-310x310.png {
root * ./static/mstile-310x310.png
2024-01-31 00:48:20 +00:00
file_server
}
handle_path /mstile-70x70.png {
root * ./static/mstile-70x70.png
2024-01-31 00:48:20 +00:00
file_server
}
handle_path /robots.txt {
root * ./static/robots.txt
2024-01-31 00:48:20 +00:00
file_server
}
handle_path /safari-pinned-tab.svg {
root * ./static/safari-pinned-tab.svg
2024-01-31 00:48:20 +00:00
file_server
}
handle_path /security.txt {
root * ./static/security.txt
2024-01-31 00:48:20 +00:00
file_server
}
handle_path /site.webmanifest {
root * ./static/site.webmanifest
2024-01-31 00:48:20 +00:00
file_server
}
handle_path /sitemap.xml {
root * ./static/sitemap.xml
2024-01-31 00:48:20 +00:00
file_server
}
2024-02-02 00:03:48 +00:00
handle_path /websocket {
respond "Access denied" 403
}
handle_path /cdn-cgi/rum {
respond "Access denied" 403
}
2024-02-01 23:14:18 +00:00
handle_path /graphql/websocket {
respond "Access denied" 403
2024-01-31 00:48:20 +00:00
}
handle_path /onboarding/* {
respond "Access denied" 403
}
handle_path /wp-* {
respond "Access denied" 403
}
handle_path /.env {
respond "Access denied" 403
}
handle_path /api* {
respond "Access denied" 403
}
handle_path /apple-touch-icon-precomposed.png {
respond "Access denied" 403
}
handle_path /rss.xml {
respond "Access denied" 403
}
handle_path /.git/* {
respond "Access denied" 403
}
handle_path /apple-touch-icon-120x120.png {
respond "Access denied" 403
}
handle_path /apple-touch-icon-120x120-precomposed.png {
respond "Access denied" 403
}
handle_path /apple-touch-icon-152x152.png {
respond "Access denied" 403
}
handle_path /apple-touch-icon-152x152-precomposed.png {
respond "Access denied" 403
}
handle_path /.well-known/* {
respond "Access denied" 403
}
handle_path /cdn-cgi/challenge-platform/h/b/orchestrate/chl_page/v1 {
respond "Access denied" 403
}
handle_path /cdn-cgi/challenge-platform/h/g/orchestrate/chl_page/v1 {
respond "Access denied" 403
}
2024-07-22 06:40:31 +00:00
2024-01-31 00:48:20 +00:00
route /* {
2024-02-07 11:17:07 +00:00
reverse_proxy web:7080
2024-01-31 00:48:20 +00:00
}
}