Is there a good alternative to github pages? I need just a static website up.

  • I have a domain.
  • I have my site (local machine)
  • And that’s all I have.
  • I have a machine that could be running 24/7 too.
  • csm10495@sh.itjust.works
    link
    fedilink
    English
    arrow-up
    0
    ·
    25 days ago

    Something that may help:

    Why doesn’t GitHub Pages fit your use case? It’s nice to get free static hosting from them.

      • csm10495@sh.itjust.works
        link
        fedilink
        English
        arrow-up
        0
        ·
        25 days ago

        In what way? Anything on the public internet is likely being used for AI training. I guess by using free GitHub you can’t object to training.

        Then again anywhere you host you sort of run into the same problem. You can use robots.txt, but things don’t have to listen to it.

        • jqubed@lemmy.world
          link
          fedilink
          English
          arrow-up
          0
          ·
          25 days ago

          Self-hosting there are some ways to fight back, or depending on your opinions on Cloudflare it seems they’re fairly effective at blocking the AI crawlers.

            • iveseenthat@reddthat.comOP
              link
              fedilink
              English
              arrow-up
              0
              ·
              24 days ago

              How do I do this? I don’t mind (and may prefer) to host not at home. My main concern with GH is that you become an AI snack whether you like it or not.

  • JackbyDev@programming.dev
    link
    fedilink
    English
    arrow-up
    0
    ·
    edit-2
    24 days ago

    You need to qualify this statement, GotHib Pages can mean like two or maybe more things. Do you mean free static site hosting? Do you mean easy static site generation from Markdown files?

    Edit: GotHib 😭 what a typo

    • iveseenthat@reddthat.comOP
      link
      fedilink
      English
      arrow-up
      0
      ·
      24 days ago

      Hi, I have means to generate the html/css/js myself. I am indeed, serving them in my LAN (python -m http.server)

      I need help learning how to make it accessible from the web.

      I don’t mind hosting somewhere else, but I really wouldn’t like my work being an easy snack for some AI. That’s why I’m not inclined to use GotHib 😁

  • miss phant@lemmy.blahaj.zone
    link
    fedilink
    English
    arrow-up
    0
    ·
    edit-2
    25 days ago

    Besides other pages alternatives you could try a cheap vps. They start as low as $10/year and any will be plenty for a static site. It’s also fun to play around with hosting other stuff. lowendbox.com has some good listings.

  • hobbsc@lemmy.sdf.org
    link
    fedilink
    English
    arrow-up
    0
    ·
    25 days ago

    Your DNS provider may offer static hosting as a paid service. I’m using porkbun and their static hosting is pretty cheap, plus they handle SSL and whatnot for me.

  • neidu3@sh.itjust.works
    link
    fedilink
    English
    arrow-up
    0
    ·
    edit-2
    25 days ago

    Ok, so I must’ve misunderstood the question, because to me it seems OP already has all the necessary ingredients to bake this dish. And yet, the vast majority of comments recommend various 3rd party services which is the complete opposite of selhosting.
    Fire up nginx/apache2, and all good, no? What am I missing?

    • iveseenthat@reddthat.comOP
      link
      fedilink
      English
      arrow-up
      0
      ·
      24 days ago

      Hi, thanks for the comment. I have the page. But I don’t know how to make the page accessible from the web.

      I have a router at home that my ISP provided (I cannot even login to it) which provides WiFi and have a couple of Ethernet ports.

      I don’t know if it is possible to make my page available to the world from behind this soho

      • neidu3@sh.itjust.works
        link
        fedilink
        English
        arrow-up
        0
        ·
        24 days ago

        Are you able to ask your ISP customer service to set up port forwarding for you?

        At minimal you want HTTP, but you probably want 443 as well. If you’re hosting DNS as well you will need port 53 too.

        Have those ports routed to the “inside” IP of the machine you want to use, and the rest of it is basically just setting up the webserver (and possibly DNS) to serve your domain.

        NB: While on the phone with your ISP, ask them what the DHCP lease time is. Ideally you want a static IP for your setup.

      • Zos_Kia@lemmynsfw.com
        link
        fedilink
        English
        arrow-up
        0
        ·
        24 days ago

        I honestly wouldn’t recommend it if you don’t have a minimum of security knowledge. The moment your home server pops up with a domain name it will get scanned by shady actors and possibly exploited.

    • LifeInMultipleChoice@lemmy.world
      link
      fedilink
      English
      arrow-up
      0
      ·
      25 days ago

      I was confused when I read it as well, at least I know now that I wasn’t alone. I think the next step is just opening a text editor and starting with <html></html> Forward a couple ports, maybe use caddy to route the port internally but it isn’t needed. Although if you use NOIP with Caddy getting the https cert setup seems to be pretty easy.

  • AnarchistArtificer@slrpnk.net
    link
    fedilink
    English
    arrow-up
    0
    ·
    25 days ago

    I recently used Jekyll (https://jekyllrb.com/) as a static site generator. I found it easy to use. I personally used Gitlab pages, because I didn’t feel confident hosting on my home internet (didn’t want to inadvertently cause issues for my housemates when I’m still learning this stuff).

    The nice thing about static sites is that it’s pretty easy to find free or extremely cheap hosting for them.

  • SolidGrue@lemmy.world
    link
    fedilink
    English
    arrow-up
    0
    ·
    25 days ago

    So, uh…

    Digital Ocean Is pretty inexpensive at US$7 monthly for 1 vCPU/1GB RAM with 1TB transfer. Decent platform. US-based, alas.

    (2025 September, for the archives)

  • S0UPernova@lemmy.world
    link
    fedilink
    English
    arrow-up
    0
    ·
    24 days ago

    I use nginx you can have configs for different sites and have the server_name have the domain for each server block (I use a file per site) and you can either do static via a root folder, or proxy_pass for active running servers, and nginx will map the domains to the server blocks you should also have a default, and you can then have multiple domains point to the same ip address, but keep in mind that home internet often has a dynamic ip, so you may need to update it every so often. There is a service to help with the dynamic ip I think noip.com has a solution available, but feel free to look around.