diff options
author | Rob Austein <sra@hactrn.net> | 2016-03-14 22:00:18 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2016-03-14 22:00:18 +0000 |
commit | e6f6432e958f3074ec210b61101bbb4be4edc1fe (patch) | |
tree | 1e48229e1dfc567c0efca186d11d30c5d3b0a6d3 /ca/rpkigui-apache-conf-gen | |
parent | fad5834d4b52daf408bb5f0d41cf13c96e960450 (diff) |
Drop Cache-Control: max-age for RRDP notification files to match
current RRDP specification, and get the URI right while we're at it.
svn path=/branches/tk705/; revision=6309
Diffstat (limited to 'ca/rpkigui-apache-conf-gen')
-rwxr-xr-x | ca/rpkigui-apache-conf-gen | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ca/rpkigui-apache-conf-gen b/ca/rpkigui-apache-conf-gen index b617b4ac..41e7e9f3 100755 --- a/ca/rpkigui-apache-conf-gen +++ b/ca/rpkigui-apache-conf-gen @@ -67,10 +67,12 @@ Alias /rrdp %(datarootdir)s/rpki/rrdp-publication/ # # RRDP "notification" file needs a short expiration: this is # a critical part of how RRDP interacts with HTTP caching. +# Timeout is per current RRDP I-D, this will need to track +# any changes as the specification evolves. # -<LocationMatch ^/rrdp/updates[.]xml$> +<LocationMatch ^/rrdp/notify[.]xml$> ExpiresActive on - ExpiresDefault "access plus 5 minutes" + ExpiresDefault "access plus 1 minute" </LocationMatch> # |