Galileo is a FastCGI server that proxies the content of a Gemini capsule to the World Wide Web. It has been designed to work out of the box with the OpenBSD httpd(8) web server, but it's known to work also with nginx and lighttpd. The program runs as the user 'apache'. You may change this during build time, for example: GALILEO_USER=apache ./galileo.SlackBuild To have the galileo daemon start and stop with your host, add to /etc/rc.d/rc.local: if [ -x /etc/rc.d/rc.galileo ]; then /etc/rc.d/rc.galileo start fi and to /etc/rc.d/rc.local_shutdown (creating it if needed): if [ -x /etc/rc.d/rc.galileo ]; then /etc/rc.d/rc.galileo stop fi You will find sample HTTP configuration in the application's documentation directory.