KiwiIRC: Difference between revisions

From ArchWiki
(Update Interlanguage link)
(→‎Installation: Fix broken package link)
 
(4 intermediate revisions by 3 users not shown)
Line 5: Line 5:
== Installation ==
== Installation ==


[[Install]] the {{AUR|kiwiirc}} package.
[[Install]] either {{AUR|kiwiirc-bin}} or {{AUR|kiwiirc-git}}.


== Running ==
== Running ==


===Apache===
=== Apache ===
 
Create the Apache configuration file:
Create the Apache configuration file:
{{hc|/etc/httpd/conf/extra/kiwiirc.conf|2=
{{hc|/etc/httpd/conf/extra/kiwiirc.conf|2=
Line 20: Line 21:
}}
}}


And include it in {{ic|/etc/httpd/conf/httpd.conf}}:
And include it in {{ic|httpd.conf}}:


# kiwiirc configuration
{{hc|/etc/httpd/conf/httpd.conf|
Include conf/extra/kiwiirc.conf
# kiwiirc configuration
Include conf/extra/kiwiirc.conf
}}


After making changes to the Apache configuration file, [[restart]] {{ic|httpd.service}}.
After making changes to the Apache configuration file, [[restart]] {{ic|httpd.service}}.


===Lighttpd===
=== Lighttpd ===
 
Configuring [[Lighttpd]], make sure {{ic|mod_alias}} has been enabled.
Configuring [[Lighttpd]], make sure {{ic|mod_alias}} has been enabled.


Add the following alias for kiwiirc to the config:
Add the following alias for kiwiirc to the config:


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

Latest revision as of 08:41, 1 April 2024

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

Installation

Install either kiwiirc-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/")