livechan is a live IRC like image board written in node.js. The OdiliFork brings this sourcecode base up to date and added security fixes and features.
support Odilitime's work http://patreon.com/odilitime/
Requirements:
- git
- node.js
- NPM
- MongoDB
- ImageMagick
- cairo and other canvas dependencies (needed for the captcha module)
- FFmpeg (if audio/video support desired)
The commands below are based on a Debian installation, other distros / operating systems will vary.
-
Install git:
sudo apt-get install git
-
Install node.js and NPM:
sudo apt-get install nodejs npm nodejs-legacy
(nodejs-legacy creates a symlink from /usr/bin/node to Debian's location /usr/bin/nodejs, needed for installation scripts that call "node".)
-
Install MongoDB:
sudo apt-get install mongodb
-
Install ImageMagick:
sudo apt-get install imagemagick
-
Install the dependencies of the canvas module:
sudo apt-get install libcairo2-dev libjpeg8-dev libpango1.0-dev libgif-dev build-essential g++
-
Install FFmpeg. See instructions at https://ffmpeg.org/download.html.
Add the sources from http://www.deb-multimedia.org/ to your /etc/apt/sources.list and do:
sudo apt-get update
sudo apt-get install deb-multimedia-keyring
sudo apt-get update
sudo apt-get install ffmpeg
Alternately you can download a static build from http://ffmpeg.gusari.org/static/ and copy the extracted binaries to /usr/local/bin:
sudo cp ffmpeg ffprobe /usr/local/bin
Note that many distributions come with Libav in place of FFmpeg. FFmpeg is recommended. Using Libav instead should be possible, but will require appropriate changes to format-image.js and generate-thumbnail.js in lib/utils.
If you do not want audio/video support, you should edit your config.js so that video_formats and audio_formats are both empty arrays.
-
Clone the git repo
8.a) Install the dependencies with npm install
cd live4chan; npm install
8.b) Download a country lookup database
wget http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz; gunzip GeoLiteCity.dat.gz
-
Restore the changes to the captcha module which were overwritten by npm install:
git checkout node_modules/captcha/captcha.js
-
If you want IRC support then Get ircd.js modified for livechan. This has no captcha so can make flooding your board easy.
cd ..; git clone https://github.com/emgram769/ircd.js; cd ircd.js; npm install; cd ../live4chan
-
Make sure the public/tmp/uploads and public/tmp/thumb folders are writable
chmod 777 public/tmp/uploads public/tmp/thumb
-
Set the admin password
node lib/set-password.js
This is used for the admin commands to delete/change posts and ban users.
-
Run LiveChan
npm start
Requires nginx 1.3+:
# the IP(s) on which your node server is running. I chose port 8083.
upstream app_livechan {
server 127.0.0.1:8083;
}
# the nginx server instance
server {
listen 0.0.0.0:80;
server_name livechan.net;
access_log /var/log/nginx/livechan.log;
# pass the request to the node.js server with the correct headers and much more can be added, see nginx config options
location / {
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header X-NginX-Proxy true;
proxy_pass http://app_livechan/;
proxy_redirect off;
}
}
If you'd like to contribute code simply send a pull request.