mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-07 02:06:57 +00:00
ce136ee593
It uses only JavaScript and HTML on the client-side. Currently it supports basic jabber instant messaging, roster management and muc-based groupchats. JWChat is an advanced instant messenger (IM) just like AIM, MSN Messenger, Yahoo! Messenger or ICQ. This means you can manage your contacts, chat with other users directly or join a groupchat room for collaborative communication. Unlike other IMs you can use this with your web browser only without having to install any additional software at all. PR: ports/82609 Submitted by: Lars Eggert <lars.eggert@gmx.net>
29 lines
931 B
Plaintext
29 lines
931 B
Plaintext
|
|
--------------------------------------------------------------------------
|
|
|
|
* Read %%PREFIX%%/%%WWW_ROOT%%/%%PORTNAME%%/README!
|
|
|
|
* Edit %%PREFIX%%/%%WWW_ROOT%%/%%PORTNAME%%/config.js to suit your needs.
|
|
|
|
* Now you have to setup your web server so that it redirects requests
|
|
to the URLs given at httpbase of config.js to an http polling/binding
|
|
capable jabber server component.
|
|
|
|
Something along these lines might work:
|
|
|
|
<Directory %%PREFIX%%/%%WWW_ROOT%%/%%PORTNAME%%>
|
|
Options +Indexes +Multiviews
|
|
AddDefaultCharset UTF-8
|
|
RewriteEngine On
|
|
RewriteRule http-poll/ http://localhost:5280/http-poll/ [P]
|
|
</Directory>
|
|
|
|
Note: You need to enable mod_rewrite and mod_proxy at your apache
|
|
configuration. Apache2 users also need to enable the protocol
|
|
specific proxy module mod_proxy_http.
|
|
|
|
* Restart your web server
|
|
|
|
--------------------------------------------------------------------------
|
|
|