💾 Archived View for bbs.geminispace.org › u › skyjake › 14450 captured on 2024-08-25 at 09:00:42. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2024-08-18)
-=-=-=-=-=-=-
Re: "How does one use CGI for a root page?"
GmCapsule does not support CGI index pages at the moment. Index pages (i.e., "index.gmi" in some directory) are only served via the "static" module, and they have to be regular text files.
To make some URL respond with dynamic content, the CGI entry point needs to be configured manually in the config file. You can either configure a single specific URL for this, or as @gritty implies, use a wildcard to assign an entire directory tree under a URL to respond with CGI.
Bubble is implemented as a GmCapsule extension module, so it does not use CGI. (CGI is a more limited/slow interface.) However, it still adds a "/*" wildcard entrypoint for handling requests.
What you probably want to do is something like this in your config file:
[cgi.my-dynamic-root] path = / /index.gmi command = {shell command for running the CGI program}
The `path` parameter here registers both / and /index.gmi as the CGI entrypoints, as the client may request either one to access the root index.
Jan 29 · 7 months ago
🕹️ skyjake [mod...] · 2024-01-29 at 05:41:
Added an issue:
🐐 satch [OP] · 2024-01-29 at 16:19:
I got my server config working the way I want. Thank you so much for your help! @skyjake @gritty
How does one use CGI for a root page? — What the title says. I have managed to break Lagrange trying to do this but haven't figured it out yet. It's obviously being done here at bbs.geminispace.org, so I'm rather confused.