This file is indexed.

/usr/share/doc/fdroidserver/examples/public-read-only-s3-bucket-policy.json is in fdroidserver 1.0.2-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
{
    "Version":"2012-10-17",
    "Statement":[
        {"Sid":"AddPerm",
         "Effect":"Allow",
         "Principal":"*",
         "Action":"s3:GetObject",
         "Resource":"arn:aws:s3:::examplebucket/fdroid/*"
        }
    ]
}