0

We have a simple html site with some css and javascript. Would like to host in on Googles servers.

Should we choose App Engine or start a web server using Compute Enginge?

If we choose App Enginge, we have to choose a language java, go, php etc. None of those suits us, we just have some html files.

Should we go with a server in Compute Enginge?

user3432918
  • 131
  • 2
  • 14

2 Answers2

3

Google Cloud Storage is better suited to this use, you can configure a bucket to serve a static web site, see https://developers.google.com/storage/docs/website-configuration

IanGSY
  • 3,664
  • 1
  • 22
  • 40
  • 1
    If you use app Engine with Google cloudstorage you have 5 GB of FREE quota, when you use the default bucket. – voscausa Apr 22 '14 at 13:11
0

You can use App Engine for this. You don't really need to use a programming language if you only want to serve static files. Check out https://stackoverflow.com/a/819360/556495

If you don't have too much traffic, App Engine will be free.

Community
  • 1
  • 1
Emil
  • 16,784
  • 2
  • 41
  • 52