blob: 4cb495b0d4b792a8fa52e46f1c4afbefe11f69ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
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.
|