Hello, I installed and launched the Gophernicus server on Linux Debian i686.
I managed to get CGI scripting working. However, I have a problem with passing parameters to the CGI script via itemtype=7.
I don't know how to configure the server to make it work. I tried to apply the information from https://boston.conman.org/2020/01/06.1 but it didn't help.
My server address: gopher://dyn.tuffo.ovh
I make the following call in the gophermap file:
7->Witaj - wprowadzv swoje imieq /cgi-bin/hello.cgi? dyn.tuffo.ovh 70
The script I want to pass a parameter to is as follows hello.cgi:
(the script is executable)
#!/bin/sh
NAME="$1"
echo "iHello $NAME - welcome to $HOSTNAME"
exit 0
Please help.