I am new to netlify . I want to use netlify drop to host game on websites like poki, miniclip and many more . Can netlify handle 2k users at a time when bandwidth is under 100 GB under free plan? What happens when 100 GB is consumed in a month?
Hey!
Iâll keep my response short so as to remain focused on your questions. Yes â we can most certainly support that user count.
As for the bandwidth: once you exceed the Starter plan limit, we will apply a pack of additional bandwidth. We always aim to serve your site so, rather than âcut you offâ, we apply the pack. For the Starter plan, once you consume 100GB of bandwidth, itâs $20 for each additional 100GB.
This mentality is the same for build minutes and similar for other metered products (Forms, Functions etc. where we enrol you on to the âLevel 1â instance of the product).
You can find more on this on our pricing page!
As of now , I think netlify starter plan will be sufficient for users . But if bandwidth of 100 GB is exceeded , youâll automatically apply pack of additional bandwidth , youâll start charging me automatically ? Can I avoid automatic applying of metered products ?
Hey @Ayu,
Thatâs correct, theyâre enrolled for you in order to ensure that your site is continuously served. You can avoid build minutes charges by not building your site and exceeding the 300 minutes per month limit. For bandwidth, youâd need to take your site offline. You will receive email reminders at 50, 75 and 90% usage.
By offline , you mean deleting site completely ? Or is there any means to keep it offline?
You could re-deploy a very âstreamlinedâ version of the site with a blank page and provide an appropriate error code.
Even better, you could add a redirect rule to a _redirects
file:
/* /302.html 302!
That would force all traffic from your site to yoursite.com/302.html and provide a 302 status code (moved temporarily).
Any sort of DNS invalidation would do the trick too. Thereâs a lot of options for bringing a site offline!
Once site is published, there is no button which I press through netlify to stop that website completely for some days . I will have to edit for html file ?
This would lead to consumption of bandwidth too .
Can I do this on netlify , like edit existing DNS or similar?
@Ayu,
No â thereâs no âtake my site downâ button, unfortunately! However, we do have a small maintenance mode workflow. Although this would use bandwidth, itâd be minimal â particularly as the simple ~5kb site would be cached.
If youâre using Netlify DNS and a custom domain, sure! You have the power to tinker with these or delete the zone entirely. If youâre using your .netlify.app
URL, this wonât be possible. If youâre not using Netlify DNS but you are using a custom domain, you can alter the records at your provider.
If youâre worried about bandwidth, just put Cloudflare in front of your site to absorb more bandwidth.
hey there, you might find this interesting:
Ok so I will deploy manually
I will create an index.html with
I am not that familiar with cloudflare as to how can I do this .
I donât think I will use cloudflare for netlify so no worries for that .
ayu, are you following the steps outlined here?
Yes I am trying to follow steps through âTo deploy manuallyâ and having problem in 2 step of the procedure out of 3 step procedure.
ok, let me see if i can give you more specific instructions. what is your netlify site name, please?
Netlify site name - https://thirsty-keller-81756c.netlify.app/
alright, so, when you log in to your Netlify account, you will see a screen that looks like this:
(I have admin access so I am able to see some things about your account, other people are not.)
You can make a small site on your local machine with just an index.html with a simple message, âwe are down for maintenanceâ or similar, and put it in a folder. then, drag and drop that folder into the drag and drop area you see in your dashboard, and it should update your existing site to show a different page. Does this help?
It helped. I uploaded html folder with html file having head as "under maintenance ".
This was shown .
net1|690x344
When site will go under maintenance in coming days , I will use 302.html .
If somebody wanted to do harm to your website, they could just write a script spamming requests to the maintanence page, that youâre suggesting. Such spam could easilly make the used bandwidth exceed I can imagine. Isnât it making the solution that you proposed kind of useless?