mirror of
https://github.com/Cian-H/iform-invenio.git
synced 2025-12-22 20:41:56 +00:00
24 lines
357 B
Caddyfile
24 lines
357 B
Caddyfile
{
|
|
debug
|
|
}
|
|
|
|
localhost {
|
|
handle_path /static* {
|
|
root * /var/www/static
|
|
file_server
|
|
}
|
|
|
|
reverse_proxy invenio-rdm:5000 {
|
|
header_down Cache-Control "no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0"
|
|
header_down Pragma "no-cache"
|
|
header_down Expires "0"
|
|
}
|
|
|
|
encode gzip
|
|
|
|
log {
|
|
format console
|
|
level DEBUG
|
|
}
|
|
}
|