-3

According to https://cloud.google.com/wordpress/ this are the to Google Cloud Platform's hosting options for WordPress so far. But I think Cloud Run is the best option for no tech person. However in order to run WordPress in Cloud Run the application should be containerized. Using the VM with Bitnami WordPress involves technical details and management which I don't want to deal with. On the other hand WordPress in App Engine Standard is doing a similar job like Cloud Run, but with some differences. Which one is better: WordPress on App Engine vs. WordPress on Cloud Run? If cloud run is much better. How?

Daniel Ocando
  • 3,554
  • 2
  • 11
  • 19
Soliman
  • 1
  • 1
  • noticed that i found out that cloud run requiring https://github.com/ahmetb/cloud-run-faq#how-do-i-make-my-web-application-compatible-with-cloud-ru Your existing applications must listen on PORT environment variable to work on Cloud Run (see container contract). (This value is currently only 8080, but it may change in the future.) – Soliman Dec 16 '19 at 05:24
  • on the hand wordpress HTTP is Usually for HTTP URLs, Port 80 of the web server is used, which Apache2 and all web server software opens normally after the installation. HTTPS requires extra Apache Modules (mod_ssl) to be enabled, port 443 to be opened, properly configured, other settings including VirtualHost configuration to be properly configured. https://make.wordpress.org/support/user-manual/web-publishing/https-for-wordpress/ – Soliman Dec 16 '19 at 05:29

2 Answers2

0

This was asked before: How to run WordPress on Google Cloud Run?

Also check out:

ahmet alp balkan
  • 42,679
  • 38
  • 138
  • 214
  • 1
    In order to complement this correct answer (it only addresses the How? part) and address the "is it better to host on App Engine or Cloud Run" part I would like to add that given the current state of affairs and nature of the application hosting WordPress in App Engine (please check this [example](https://cloud.google.com/php/tutorials/wordpress-app-engine-flexible)) would be a better architectural choice than using Cloud Run. Please refer to @AhmetB great insights on the [post](https://stackoverflow.com/questions/55796876/how-to-run-wordpress-on-google-cloud-run) he mentions. – Daniel Ocando Dec 16 '19 at 11:23
0

For a non tech person, I'd suggest Googles Firebase hosting which uses the same containerized technology in the background, but is a service managed by Google similar to other hosting providers.