Is it possible to run a Wordpress site on Google Cloud for free forever using “Always free products”?
I am planning to create a wordpress website which won't need more than 3-4 GBs of storage since I'll only post textual content and not much media files. I am targeting to get around 10k pageviews per day at peak
https://cloud.google.com/free/
Google Cloud offers a 12 month free trial for its products, but some services are termed as "Always Free Products". Is it possible to substitute a paid wordpress hosting like Bluehost or Dreamhost by the free products that Google Cloud offers? The websites I have read don't provide a clear explanation of whether this is possible. (I can't use wordpress.com because I need to use my own theme and plugins)
If that's possible, why isn't it a mainstream choice for wordpress bloggers?
wordpress google-cloud-platform google-cloud-storage web-hosting
add a comment |
I am planning to create a wordpress website which won't need more than 3-4 GBs of storage since I'll only post textual content and not much media files. I am targeting to get around 10k pageviews per day at peak
https://cloud.google.com/free/
Google Cloud offers a 12 month free trial for its products, but some services are termed as "Always Free Products". Is it possible to substitute a paid wordpress hosting like Bluehost or Dreamhost by the free products that Google Cloud offers? The websites I have read don't provide a clear explanation of whether this is possible. (I can't use wordpress.com because I need to use my own theme and plugins)
If that's possible, why isn't it a mainstream choice for wordpress bloggers?
wordpress google-cloud-platform google-cloud-storage web-hosting
add a comment |
I am planning to create a wordpress website which won't need more than 3-4 GBs of storage since I'll only post textual content and not much media files. I am targeting to get around 10k pageviews per day at peak
https://cloud.google.com/free/
Google Cloud offers a 12 month free trial for its products, but some services are termed as "Always Free Products". Is it possible to substitute a paid wordpress hosting like Bluehost or Dreamhost by the free products that Google Cloud offers? The websites I have read don't provide a clear explanation of whether this is possible. (I can't use wordpress.com because I need to use my own theme and plugins)
If that's possible, why isn't it a mainstream choice for wordpress bloggers?
wordpress google-cloud-platform google-cloud-storage web-hosting
I am planning to create a wordpress website which won't need more than 3-4 GBs of storage since I'll only post textual content and not much media files. I am targeting to get around 10k pageviews per day at peak
https://cloud.google.com/free/
Google Cloud offers a 12 month free trial for its products, but some services are termed as "Always Free Products". Is it possible to substitute a paid wordpress hosting like Bluehost or Dreamhost by the free products that Google Cloud offers? The websites I have read don't provide a clear explanation of whether this is possible. (I can't use wordpress.com because I need to use my own theme and plugins)
If that's possible, why isn't it a mainstream choice for wordpress bloggers?
wordpress google-cloud-platform google-cloud-storage web-hosting
wordpress google-cloud-platform google-cloud-storage web-hosting
asked Dec 8 '17 at 18:42
SamSam
11
11
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Answer was a bit outdated, so revising: it's possible, but probably not the very best idea.
You can host WordPress, for free, on Google Cloud Platform. You can use App Engine Standard, App Engine Flexible, Kubernetes Engine, Compute Engine.
The thing is, as far as I understand WordPress, you need an SQL database, and there's no free tier for Cloud SQL.
The cheapest you can go with Cloud SQL is around $10/month for a db-f1-micro
managed instance with some storage. It's not covered by an SLA, and performance is likely not good enough for production, but it's managed.
If you want to cut costs, you can host your own MySQL on an always free f1-micro
Compute Engine instance. You'll have to manage it yourself (security, upgrades, reboots, etc). If you go this route, choose any US region for App Engine Standard PHP, and an f1-micro
Compute Engine instance with 30GB of persistent disk in the same region (performance scales with disk size, so go big). Host (mostly) static files on Cloud Storage to take the load off of your servers, and use a free CDN (like Cloudflare) to cache as much as you can.
The markup on MySQL Second Generation Cloud SQL instances is around 100% over the Compute Engine instance that host them (db-n1-standard-1
is $49.31 vs n1-standard-1
is $24.27).
there is a Cloud Datastore on cloud.google.com/free , which gives 1GB storage and 'Highly Scalable NoSQL Database'. does that work for the sql requirement?
– Sam
Nov 22 '18 at 20:04
It's NoSQL, so, no.
– Nuno Cruces
Nov 23 '18 at 10:06
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f47720393%2fis-it-possible-to-run-a-wordpress-site-on-google-cloud-for-free-forever-using-a%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Answer was a bit outdated, so revising: it's possible, but probably not the very best idea.
You can host WordPress, for free, on Google Cloud Platform. You can use App Engine Standard, App Engine Flexible, Kubernetes Engine, Compute Engine.
The thing is, as far as I understand WordPress, you need an SQL database, and there's no free tier for Cloud SQL.
The cheapest you can go with Cloud SQL is around $10/month for a db-f1-micro
managed instance with some storage. It's not covered by an SLA, and performance is likely not good enough for production, but it's managed.
If you want to cut costs, you can host your own MySQL on an always free f1-micro
Compute Engine instance. You'll have to manage it yourself (security, upgrades, reboots, etc). If you go this route, choose any US region for App Engine Standard PHP, and an f1-micro
Compute Engine instance with 30GB of persistent disk in the same region (performance scales with disk size, so go big). Host (mostly) static files on Cloud Storage to take the load off of your servers, and use a free CDN (like Cloudflare) to cache as much as you can.
The markup on MySQL Second Generation Cloud SQL instances is around 100% over the Compute Engine instance that host them (db-n1-standard-1
is $49.31 vs n1-standard-1
is $24.27).
there is a Cloud Datastore on cloud.google.com/free , which gives 1GB storage and 'Highly Scalable NoSQL Database'. does that work for the sql requirement?
– Sam
Nov 22 '18 at 20:04
It's NoSQL, so, no.
– Nuno Cruces
Nov 23 '18 at 10:06
add a comment |
Answer was a bit outdated, so revising: it's possible, but probably not the very best idea.
You can host WordPress, for free, on Google Cloud Platform. You can use App Engine Standard, App Engine Flexible, Kubernetes Engine, Compute Engine.
The thing is, as far as I understand WordPress, you need an SQL database, and there's no free tier for Cloud SQL.
The cheapest you can go with Cloud SQL is around $10/month for a db-f1-micro
managed instance with some storage. It's not covered by an SLA, and performance is likely not good enough for production, but it's managed.
If you want to cut costs, you can host your own MySQL on an always free f1-micro
Compute Engine instance. You'll have to manage it yourself (security, upgrades, reboots, etc). If you go this route, choose any US region for App Engine Standard PHP, and an f1-micro
Compute Engine instance with 30GB of persistent disk in the same region (performance scales with disk size, so go big). Host (mostly) static files on Cloud Storage to take the load off of your servers, and use a free CDN (like Cloudflare) to cache as much as you can.
The markup on MySQL Second Generation Cloud SQL instances is around 100% over the Compute Engine instance that host them (db-n1-standard-1
is $49.31 vs n1-standard-1
is $24.27).
there is a Cloud Datastore on cloud.google.com/free , which gives 1GB storage and 'Highly Scalable NoSQL Database'. does that work for the sql requirement?
– Sam
Nov 22 '18 at 20:04
It's NoSQL, so, no.
– Nuno Cruces
Nov 23 '18 at 10:06
add a comment |
Answer was a bit outdated, so revising: it's possible, but probably not the very best idea.
You can host WordPress, for free, on Google Cloud Platform. You can use App Engine Standard, App Engine Flexible, Kubernetes Engine, Compute Engine.
The thing is, as far as I understand WordPress, you need an SQL database, and there's no free tier for Cloud SQL.
The cheapest you can go with Cloud SQL is around $10/month for a db-f1-micro
managed instance with some storage. It's not covered by an SLA, and performance is likely not good enough for production, but it's managed.
If you want to cut costs, you can host your own MySQL on an always free f1-micro
Compute Engine instance. You'll have to manage it yourself (security, upgrades, reboots, etc). If you go this route, choose any US region for App Engine Standard PHP, and an f1-micro
Compute Engine instance with 30GB of persistent disk in the same region (performance scales with disk size, so go big). Host (mostly) static files on Cloud Storage to take the load off of your servers, and use a free CDN (like Cloudflare) to cache as much as you can.
The markup on MySQL Second Generation Cloud SQL instances is around 100% over the Compute Engine instance that host them (db-n1-standard-1
is $49.31 vs n1-standard-1
is $24.27).
Answer was a bit outdated, so revising: it's possible, but probably not the very best idea.
You can host WordPress, for free, on Google Cloud Platform. You can use App Engine Standard, App Engine Flexible, Kubernetes Engine, Compute Engine.
The thing is, as far as I understand WordPress, you need an SQL database, and there's no free tier for Cloud SQL.
The cheapest you can go with Cloud SQL is around $10/month for a db-f1-micro
managed instance with some storage. It's not covered by an SLA, and performance is likely not good enough for production, but it's managed.
If you want to cut costs, you can host your own MySQL on an always free f1-micro
Compute Engine instance. You'll have to manage it yourself (security, upgrades, reboots, etc). If you go this route, choose any US region for App Engine Standard PHP, and an f1-micro
Compute Engine instance with 30GB of persistent disk in the same region (performance scales with disk size, so go big). Host (mostly) static files on Cloud Storage to take the load off of your servers, and use a free CDN (like Cloudflare) to cache as much as you can.
The markup on MySQL Second Generation Cloud SQL instances is around 100% over the Compute Engine instance that host them (db-n1-standard-1
is $49.31 vs n1-standard-1
is $24.27).
edited Nov 23 '18 at 10:38
answered Dec 28 '17 at 12:13
Nuno CrucesNuno Cruces
930815
930815
there is a Cloud Datastore on cloud.google.com/free , which gives 1GB storage and 'Highly Scalable NoSQL Database'. does that work for the sql requirement?
– Sam
Nov 22 '18 at 20:04
It's NoSQL, so, no.
– Nuno Cruces
Nov 23 '18 at 10:06
add a comment |
there is a Cloud Datastore on cloud.google.com/free , which gives 1GB storage and 'Highly Scalable NoSQL Database'. does that work for the sql requirement?
– Sam
Nov 22 '18 at 20:04
It's NoSQL, so, no.
– Nuno Cruces
Nov 23 '18 at 10:06
there is a Cloud Datastore on cloud.google.com/free , which gives 1GB storage and 'Highly Scalable NoSQL Database'. does that work for the sql requirement?
– Sam
Nov 22 '18 at 20:04
there is a Cloud Datastore on cloud.google.com/free , which gives 1GB storage and 'Highly Scalable NoSQL Database'. does that work for the sql requirement?
– Sam
Nov 22 '18 at 20:04
It's NoSQL, so, no.
– Nuno Cruces
Nov 23 '18 at 10:06
It's NoSQL, so, no.
– Nuno Cruces
Nov 23 '18 at 10:06
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f47720393%2fis-it-possible-to-run-a-wordpress-site-on-google-cloud-for-free-forever-using-a%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown