SCGI Application Server

package main

import sis "gitlab.com/sis-suite/smallnetinformationservices"

func main() {
    // Start SCGI Application Server, in configless mode, meaning there will not be a SIS manager or configuration files.
    context, err := sis.InitConfiglessMode()
    if err != nil {
        panic(err)
    }

    // For SCGI application servers, the Hostname is the expected hostname given from the main gemini server (aka. REQUEST_DOMAIN
    // or SERVER_NAME), and the Port is the expected serve port given from the main gemini server (aka. SERVER_PORT).
    hosts := [...]sis.HostConfig{
        {BindAddress: "localhost", BindPort: "5001", Hostname: "localhost", Port: "1995", Upload: false, SCGI: true},
        {BindAddress: "localhost", BindPort: "5001", Hostname: "localhost", Port: "1995", Upload: true, SCGI: true},
    }
    scgi_gemini_server := context.AddServer(sis.Server{Name: "AuraMuse", Type: sis.ServerType_Gemini}, hosts[:]...)
    scgi_gemini_server.AddRoute("/", func(request sis.Request) {
        request.Gemini("# SCGI Application Server Homepage\n")
        request.Link("/test", "Test Link") // This makes sure the link is prepended with the SERVER_NAME, SERVER_PORT, and SCRIPT_NAME given to the SCGI application server.
        request.Gemini("=> /test Another Test Link\n") // request.Gemini() also converts all links in the given gemtext to their correct version by prepending SCRIPT_NAME to absolute links.
    })
    scgi_gemini_server.AddRoute("/test", func(request sis.Request) {
        request.Gemini("Hello World!\n")
    })

    context.Start()
}