.htaccess warning but access looks denied?

Hi !
I am on the very latest version of nextcloud official docker image. 19.0.0RC3-apache

When I setup my instance I saw the warning “files accessible over the internet” that was popping up.

Now it may seems like a stupid question but when I go to:
https://nextcloud.mydomain.com/data/ExampleUsername/files/Nextcloud.png

(I setup a user called ExampleUsername, and I know by default there is this Nextcloud.png on the account)

Well I don’t have access to the file, it just redirects me to the login page… is that correct ? Am I in the wrong to think I am ok ? I would really like your feedback on that before putting sensitive data here…

Thanks !

Also my htaccess looks like this

    # Generated by Nextcloud on 2020-06-01 15:36:20
    # Section for Apache 2.4 to 2.6
    <IfModule mod_authz_core.c>
      Require all denied
    </IfModule>
    <IfModule mod_access_compat.c>
      Order Allow,Deny
      Deny from all
      Satisfy All
    </IfModule>
# Section for Apache 2.2
<IfModule !mod_authz_core.c>
  <IfModule !mod_access_compat.c>
<IfModule mod_authz_host.c>
  Order Allow,Deny
  Deny from all
</IfModule>
Satisfy All
  </IfModule>
</IfModule>

# Section for Apache 2.2 to 2.6
<IfModule mod_autoindex.c>
  IndexIgnore *
</IfModule>