-
Notifications
You must be signed in to change notification settings - Fork 22
/
README
36 lines (22 loc) · 1.27 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
Twich web-based chat (http://twich.me/)
by Isaac Su ([email protected], @isaacsu)
based on http://github.com/ry/node_chat
For discussions and support please visit http://forum.twich.me/
Please drop me a line when you've got a site running.
I would love to hear of twich servers running in the wild.
Installation
------------
www/
This are a set of php scripts that serve up the client files and organize the rooms.
1. Create a vhost in Apache and point it to this folder. You will require mod_rewrite for it to function properly.
2. Copy www/_config.php.sample to www/_config.php and enter your own configuration settings. These help to customize the javascript files that are served to the client.
var $port = 443; // Port that node server is listening on
var $domain = ''; //domain name of node server
var $analyticsAccount = ''; // Google Analytics account
var $analyticsDomainName = ''; // Google Analytics domain name
3. Edit .htaccess and put your own domain name in instead of twich.me
4. www/ is all set up.
node/
This is the actual node server.
1. Configuration is in config.js. The only one you should be worrying about is port:443. This has to match $port in _config.php.
2. Start the node server by typing: node server.js