I finally converted all my old .htaccess files to the updated Apache 2+ version, but it's making me re-examine this apple-touch-icon stuff again. I have something like (I abbreviated this):
<FilesMatch "\.(au|avi|avif|bmp|doc|gif|jpg|jpeg|mp3|mp4|mov|mpeg|mpg|pdf|png|tif|wav|webp|zip)$">
Require env local_referal
</FilesMatch>
But that conflicts with
<FilesMatch "apple-touch-icon[^.]">
Require all granted
</FilesMatch>
How do I enable just the one (or more) .png files to be available to anybody? I'm unsure about nesting rules in FilesMatch.