For data security I need to be able to find out when a file was downloaded and who downloaded it.
Is this possible in Confluence?
You can turn on http access logging for Tomcat ... link below. Then search through the access logs for ...
http(s)://{your server}/download/attachments/{page id}/attachment.ext
The only change I would make to turning on the access logging would be to replace this
<filter-mapping> <filter-name>AccessLogFilter</filter-name> <url-pattern>/display/*</url-pattern> </filter-mapping>
with this
<filter-mapping> <filter-name>AccessLogFilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping>
https://confluence.atlassian.com/display/CONFKB/How+to+Enable+User+Access+Logging
Only if you have set up some form of logging to capture the fact someone used the download option.
It's not that easy in Tomcat alone, I tend to use a proxy in front of it and read the access logs in there.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.