I want to host my website in my raspberry pi, I’ve read that I would need a web server software for this. Which one do you recommend? It won’t be a complex website.

  • d_k_bo@feddit.de
    link
    fedilink
    English
    arrow-up
    27
    ·
    edit-2
    1 year ago

    Caddy! It has HTTPS built in and provides simple but powerful configuration with sane defaults.

    Example Caddyfile for a static file server:

    example.com {
    	root * /var/www
    	file_server
    }
    

    I used nginx in the past, but didn’t like it’s verbose config files.

    • psykon@kbin.social
      link
      fedilink
      arrow-up
      9
      ·
      1 year ago

      +1 for Caddy. It’s my default webserver and reverse proxy. Built-in Https and the fact that I can get it up, running and configured in a matter of minutes are the main reasons.