VOOZH about

URL: https://wiki.archlinux.org/title/KiwiIRC

⇱ KiwiIRC - ArchWiki


Jump to content
From ArchWiki

KiwiIRC is a hand-crafted IRC client that you can enjoy. Designed to be used easily and freely.

Installation

Install either kiwiirc-server-binAUR or kiwiirc-gitAUR.

Running

Apache

Create the Apache configuration file:

/etc/httpd/conf/extra/kiwiirc.conf
Alias /kiwiirc "/usr/share/webapps/kiwiirc"
<Directory "/usr/share/webapps/kiwiirc">
 AllowOverride All
 Options FollowSymlinks
 Require all granted
</Directory>

And include it in httpd.conf:

/etc/httpd/conf/httpd.conf
# kiwiirc configuration
Include conf/extra/kiwiirc.conf

After making changes to the Apache configuration file, restart httpd.service.

Lighttpd

Configuring Lighttpd, make sure mod_alias has been enabled.

Add the following alias for kiwiirc to the config:

alias.url = ( "/kiwiirc" => "/usr/share/webapps/kiwiirc/")