TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: What's your go-to webhost in 2023 for simple websites?

16 pointsby Michelangelo11over 1 year ago
I&#x27;m trying to put up a simple site with a few HTML and JS files, and I grabbed one of the first hosts I found, CloudFlare Pages. But even digging up the process to put up a tiny, static site like mine took some work -- there were absolutely no obvious options for it in the UI. The forum post I dug up linked to an official documentation page explaining that the only solution involved using git and pulling the files from a GH repo (link for the curious: https:&#x2F;&#x2F;developers.cloudflare.com&#x2F;pages&#x2F;framework-guides&#x2F;deploy-anything&#x2F; )<p>This is obviously a much more complex and less straightforward user experience than the one I had some 20 years ago, when I used an FTP client to upload whatever I wanted by a process that was pretty obvious, took just a couple of steps, and was hard to screw up. That&#x27;s exactly what I&#x27;d like to be able to do again, but I have no idea if there&#x27;s a hosting service that can offer something like that today. Can anyone recommend one they&#x27;ve had good experiences with?

25 comments

cmsparksover 1 year ago
If you want to try out Cloudflare Pages again, you aren&#x27;t required to have github integration. If you want to just upload and host some static assets you can use direct upload. You can basically just drag and drop&#x2F;manually upload a zip file containing some HTML, JS, or other static assets and create a static site that way. (See: <a href="https:&#x2F;&#x2F;developers.cloudflare.com&#x2F;pages&#x2F;get-started&#x2F;direct-upload&#x2F;" rel="nofollow noreferrer">https:&#x2F;&#x2F;developers.cloudflare.com&#x2F;pages&#x2F;get-started&#x2F;direct-u...</a>)<p>(Disclaimer: I&#x27;m an engineer on Cloudflare Pages)
shubhamjainover 1 year ago
No offence, there&#x27;s a bit of stubbornness when someone says, &quot;I used an FTP client to upload whatever I wanted by a process that was pretty obvious.&quot; Git + Pages&#x2F;Netlify is a different setup than FTP for sure, but it isn&#x27;t more complicated. Just connect your git repo with Cloudflare pages and push things to it. If you don&#x27;t like CLI, there are plenty of git clients to do the job. Hell, you can edit files on Github repo itself.<p>The reason I say this is, because as I have grown senior, I started noticing similar stubbornness in myself (&quot;This was so much easy back in our days&quot;) and attitude of refusing to learn that came with it. I don&#x27;t deny that some of the complexity in the web world is unwarranted, but when I refuse to invest my time in even trying to understand new solutions, I fail to acknowledge the benefits as well.<p>In the FTP days, it was easy to crash the whole site because of bad code that creeped in and no easy to way to decipher what change caused it. Cloudflare pages allow my to restore my site to any point of time and makes it easier to keep track of changes.<p>I think it&#x27;s important to keep an open mind when it comes to new solutions.
评论 #38099031 未加载
评论 #38096771 未加载
cpachover 1 year ago
<i>“I have no idea if there&#x27;s a hosting service that can offer something like that today”</i><p>There are lots of hosting providers that still offers this kind of functionality. I imagine that e.g. a lot of WordPress users still deploy in this manner.<p>As long as the provider offers SFTP you can use e.g. WinSCP or Cyberduck to drag and drop files.
armchairhackerover 1 year ago
Github pages<p>100% free. Very fast. If you want you can get a non-GH domain. Updating the site is just pushing to a `gh-pages` branch
andrewfromxover 1 year ago
<a href="https:&#x2F;&#x2F;www.bluehost.com&#x2F;hosting&#x2F;shared" rel="nofollow noreferrer">https:&#x2F;&#x2F;www.bluehost.com&#x2F;hosting&#x2F;shared</a><p><a href="https:&#x2F;&#x2F;www.ionos.com&#x2F;hosting&#x2F;web-hosting" rel="nofollow noreferrer">https:&#x2F;&#x2F;www.ionos.com&#x2F;hosting&#x2F;web-hosting</a><p><a href="https:&#x2F;&#x2F;www.hostgator.com&#x2F;web-hosting" rel="nofollow noreferrer">https:&#x2F;&#x2F;www.hostgator.com&#x2F;web-hosting</a><p>little more complicated but free:<p><a href="https:&#x2F;&#x2F;render.com&#x2F;" rel="nofollow noreferrer">https:&#x2F;&#x2F;render.com&#x2F;</a>
kennethkoover 1 year ago
I use Digital Ocean&#x27;s App Platform which has free hosting for 3 static sites. CD is setup through integrations with GH&#x2F;GL&#x2F;BB, if I recall correctly. No particular reason why I chose this, other than I had a DO account open already for a few latent domains. It&#x27;s proven to be simple enough &amp; batteries included.
ryandetzelover 1 year ago
I did this a few months ago, and CF Pages is by far the most flexible and easy way once you have it setup. Spend some time just setting it up and understanding it and then making changes is just a commit and push away. Scales well and offers a lot of other features some of the other platforms don&#x27;t, for free
throwaway154over 1 year ago
&gt; That&#x27;s exactly what I&#x27;d like to be able to do again<p>Dreamhost.com (or one of the many others).<p>Pick &#x27;webhosting&#x27; as the option. You may even get a free .com for a year, just like back in the day.<p>Github pages and CDNs and CMSs and one-click install and VPSs and all that jazz don&#x27;t fix an unbroken problem: Hosting static files on a webserver that likely hosts hundreds or thousands of sites effortlessly.<p>None of that jazz is needed. FTP your files. With FileZilla. Like back in the day.
arthur234over 1 year ago
I find Netlify has a nicer interface for setting up a site through Git(Hub) (more hand-holding), but it also lets you upload a site by dragging and dropping a folder into their UI.
GeneralMaximusover 1 year ago
If you don’t want to go to the trouble of setting up a Git repository and connecting it to Netlify, you can always use Netlify Drop: <a href="https:&#x2F;&#x2F;app.netlify.com&#x2F;drop" rel="nofollow noreferrer">https:&#x2F;&#x2F;app.netlify.com&#x2F;drop</a><p>Just drag and drop the directory containing your website to the page, and it takes care of the rest. Very convenient for hosting simple fire and forget web pages online.
meiralealover 1 year ago
There are so many easy ways to deploy simple html files today. This sounds like old man yelling at the clouds rant, not a real issue.
alabhyajindalover 1 year ago
I really like using Netlify. Just drag and drop your files if you don&#x27;t want to use Git integration.
Leftiumover 1 year ago
&quot;Deploy anything in six keystrokes&quot;<p><a href="https:&#x2F;&#x2F;surge.sh&#x2F;" rel="nofollow noreferrer">https:&#x2F;&#x2F;surge.sh&#x2F;</a>
marvin-hansenover 1 year ago
Cloudflare sites for Hugo or any other static site generator. It&#x27;s free, it&#x27;s simple, and updates on each git push.
kentbrewover 1 year ago
Check out <a href="https:&#x2F;&#x2F;neocities.org" rel="nofollow noreferrer">https:&#x2F;&#x2F;neocities.org</a>.
drakonkaover 1 year ago
For just HTML, JS, and some images I default to an S3 bucket these days.
sodimelover 1 year ago
I ususally go with alwaysdata, a tiny, reliable, french hosting solution.
ValdikSSover 1 year ago
<a href="https:&#x2F;&#x2F;neocities.org&#x2F;" rel="nofollow noreferrer">https:&#x2F;&#x2F;neocities.org&#x2F;</a>
helijover 1 year ago
My go-to is VPS on Vultr (the cheapest one) with FreeBSD + nginx.
romanhnover 1 year ago
You can set up an S3 public bucket that will serve as a free static host. Just copy the files via UI or command line and you&#x27;re set.
vkakuover 1 year ago
- S3&#x2F;R2&#x2F;GS<p>- Github Pages &#x2F; Cloudflare Pages<p>- Heroku &#x2F; Cloudflare Workers<p>- ngrok<p>Take your pick. You can get a lot done with many of these and with a free quota.
dyejeover 1 year ago
I think Vercel and Render are both pretty good for simple static sites.
flashback2199over 1 year ago
What&#x27;s so hard about github? o.O
COOL_DUDE_2112over 1 year ago
wayback archive of a pastebin :-)
tomcamover 1 year ago
Netlify