slackbuilds

My Slackbuilds
git clone git://git.server.ky/slackcoder/slackbuilds
Log | Files | Refs | README

README (753B)


      1 Galileo is a FastCGI server that proxies the content of a Gemini capsule
      2 to the World Wide Web. It has been designed to work out of the box with
      3 the OpenBSD httpd(8) web server, but it's known to work also with nginx
      4 and lighttpd.
      5 
      6 The program runs as the user 'apache'.  You may change this during build
      7 time, for example:
      8 
      9   GALILEO_USER=apache ./galileo.SlackBuild
     10 
     11 To have the galileo daemon start and stop with your host, add to
     12 /etc/rc.d/rc.local:
     13 
     14   if [ -x /etc/rc.d/rc.galileo ]; then
     15     /etc/rc.d/rc.galileo start
     16   fi
     17 
     18 and to /etc/rc.d/rc.local_shutdown (creating it if needed):
     19 
     20   if [ -x /etc/rc.d/rc.galileo ]; then
     21     /etc/rc.d/rc.galileo stop
     22   fi
     23 
     24 You will find sample HTTP configuration in the application's
     25 documentation directory.