Commit Diff


commit - 8dfac0e4f978a681139d55ce212cf7c04919f66c
commit + 746f25b9b3964c0ec9b24c6c4dab34cf0e51e335
blob - 7ea41445379acc15ea1e7a159546a3a66249586a
blob + efaa5bb3e5fd13a1fe1752a838030d9fa06d23c1
--- resources/pages/gmid.gmi
+++ resources/pages/gmid.gmi
@@ -2,30 +2,26 @@
 
 gmid is a small, almost no-dependencies, gemini server for static content.  I wrote it because I needed one and I disliked the ones that I found (or I wasn't able to compile them)
 
-It's a very short program (less than 800 lines of C code at the moment), that uses libtls (a GREAT tls library from the OpenBSD folks.)
+It's a very short program (less than 1K lines of C code at the moment), that uses libtls (a GREAT tls library from the OpenBSD folks) but is able to serve static content and execute CGI scripts.
 
-It doesn't support virtual hosts (it completely ignores the host part of the requested URL) and can only serve static content.
+=> https://git.omarpolo.com/gmid        source code
+=> https://github.com/omar-polo/gmid	GitHub mirror
 
-=> https://git.omarpolo.com/gmid        gmid git repository
-
-You can fetch the code with git
+You can fetch the code with git:
 ```
-git clone https://git.omarpolo.com/gmid
+$ git clone https://git.omarpolo.com/gmid
 ```
-or via the github mirror
+or via the github mirror:
 ```
-git clone https://github.com/omar-polo/gmid
+$ git clone https://github.com/omar-polo/gmid
 ```
 
 ## Future plans
 
 This is mostly a TODO/wish list of things, just to get an idea of what I'm gonna do (and to remind to myself too).
 
-* virtual hosts
-mapping virtual hosts to different directories would be really handy.
+* virtual hosts: mapping virtual hosts to different directories would be really handy.
 
-* dual stack — serving over both ipv4 and ipv6
-doesn’t really need an explanation.
+* dual stack: serving over both ipv4 and ipv6
 
-* directory listings
-It's currently not supported, and I'm not even sure it could be useful.
+* directory listings: it's currently not supported, and I'm not even sure it could be useful.