KiwiIRC
		
		
		
		
		
		Jump to navigation
		Jump to search
		
		
	
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
KiwiIRC is a hand-crafted IRC client that you can enjoy. Designed to be used easily and freely.
Installation
Install the kiwiircAUR package.
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 /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/")