Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is Google Cloud Storage indexed in search?

If a file is placed into Google Cloud storage and made public, but a URL to the file does not exist on another webpage, does Google index it in its search results anyway? Anyone know?

like image 733
Roger Gilbrat Avatar asked Nov 03 '22 07:11

Roger Gilbrat


1 Answers

Google's search index is independent of its cloud storage. Making a file public in cloud storage does not automatically index it in Google's search results.

However, asking this question leads me to believe that you're probably wondering if it's okay to make a file public and be reasonably sure that the file is not accessible to anyone. If the files are of any sensitive nature to you or your users, this is not the right solution.

If you're using GCS on a website and want to serve files securely, you might want to try the Signed URLs option. If it's just about being indexed, you could add a robots.txt file to the root of your bucket that excludes the file from being indexed.

like image 119
jterrace Avatar answered Nov 08 '22 05:11

jterrace