chiark / gitweb /
A couple of fixes for Ubuntu Dapper:
[disorder] / README.vhost
1 If you want to give DisOrder's web interface its own virtual domain
2 then for Apache 1.3 you'll want something like this:
3
4     <VirtualHost HOST.DOMAIN>
5     DocumentRoot /home/jukebox/public_html
6     ServerName HOST.DOMAIN
7     ServerAlias HOST
8     ServerAdmin webmaster@DOMAIN
9     ErrorLog /var/log/apache/jukebox/error.log
10     TransferLog /var/log/apache/jukebox/access.log
11     Alias /disorder/ /usr/local/share/disorder/static/
12     </VirtualHost>
13
14 You would then install the CGI as follows:
15
16     mkdir -p /home/jukebox/public_html
17     install -m 755 clients/disorder.cgi /home/jukebox/public_html/index.cgi
18
19 Local Variables:
20 mode:text
21 fill-column:79
22 End: