KiwiIRC (简体中文)

From ArchWiki
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翻译。上次翻译日期:2020-05-05。如果英文版本有所更改,则您可以帮助同步翻译。

KiwiIRC 是您可以享受的手工制作的IRC客户。专为轻松自由使用而设计。

安装

安装 kiwiircAUR 包。

运行

Apache

创建 Apache 配置文件:

/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>

并将其包含在 /etc/httpd/conf/httpd.conf

# kiwiirc configuration
Include conf/extra/kiwiirc.conf

更改 Apache 配置文件后,重新启动 httpd.service

Lighttpd

配置 Lighttpd,确保 mod_alias 已启用

将 kiwiirc 的以下别名添加到配置中:

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