Eely

What is this?

Currently just me experimenting around with hosting a simple blog.

This site uses Caddy for serving static files and for automatically renewing the TLS certificate.

Everything that looks like html, aka this index and the blog route was written in Rust, using Maud as a statically compiled templating engine for displaying the list of blog entries as well as each blog entry itself.

Blog entries are stored as a Sqlite and are dynamically fetched and compiled into html based on the request url. For example, trying to access /blog/some-blog-post tries to find the Sqlite entry for some-blog-post and returns 404 if not found (wow).