Comment by ๐ŸŒ† skyjake

Re: "How does one use CGI for a root page?"

In: s/GmCapsule

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:

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.

๐ŸŒ† skyjake [mod, sysop]

2024-01-29 ยท 2 years ago

2 Later Comments โ†“

๐ŸŒ† skyjake [mod...] ยท 2024-01-29 at 05:41:

Added an issue:

โ€” /s/GmCapsule-Issues/9

๐Ÿ 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

Original Post

๐ŸŒ’ s/GmCapsule

๐Ÿ satch:

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.

๐Ÿ’ฌ 5 comments ยท 2024-01-28 ยท 2 years ago