jschan - Anonymous imageboard software. Classic look, modern features and feel. Works without JavaScript and supports Tor, I2P, Lokinet, etc.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
fatchan 51eaa31b41 sort bans and appeals in a better order, with option to deny appeal OR unban 5 years ago
configs option for insecure cookies in production mode, and add missing stuff to example config 5 years ago
controllers sort bans and appeals in a better order, with option to deny appeal OR unban 5 years ago
db sort bans and appeals in a better order, with option to deny appeal OR unban 5 years ago
gulp/res sort bans and appeals in a better order, with option to deny appeal OR unban 5 years ago
helpers change how auto scroll scrolls to not change window hash, and make threshold gt not gte 5 years ago
models sort bans and appeals in a better order, with option to deny appeal OR unban 5 years ago
schedules dont build webring redundantly and set flag when new post or change setting on unlisted board, or new board created or existing listed board deleted 5 years ago
views sort bans and appeals in a better order, with option to deny appeal OR unban 5 years ago
.gitignore dont include that 5 years ago
LICENSE Create LICENSE 5 years ago
README.md update readme 5 years ago
backup.sh.example fix backup 5 years ago
ecosystem.config.js use highlight.js for syntax highlighting in code blocks of posts 5 years ago
gulpfile.js mongodb sucks, make the gulpfile create collections and dont create indexes in parallel 5 years ago
package-lock.json prototype post hiding and post menu 5 years ago
package.json prototype post hiding and post menu 5 years ago
queue.js rename those 5 years ago
redis.js add other util to redis wrapper using scan to delete keys by a pattern for diagnostics or amdinistrative purposes 5 years ago
redlock.js no more lmx. since we have redis, use it for redlock and connect-redis for sessions instead of mongo 5 years ago
server.js option for insecure cookies in production mode, and add missing stuff to example config 5 years ago
socketio.js add sfw boards, update homepage and webring to support and show this 5 years ago
worker.js rename those 5 years ago

README.md

jschan

Anonymous imageboard. A type of BBS or forum software. Still in development, so beware if attempting to run a public instance. Demo site running at https://fatpeople.lol

Goals

  • Oldschool imageboard look, with some modern touches
  • Support users that have javascript disabled (TOR users, or the security conscious)
  • Leverage nginx to serve static files, do GeoIP lookups and various other things

Features

  • User created boards ala infinity
  • Captcha and basic antispam
  • Read-only JSON api
  • Public modlogs
  • Multi-select posts for moderation actions/reports
  • Post styling & quote linking
  • Backlinks shown without javascript
  • Multiple files per post
  • Websocket updates threads live
  • Webring support lynxchan infinity

Todo

  • Finish moderation tools (post editing, inter and intra board post moving/thread merging, file hash bans, range bans, ban history)
  • Configuration editor on the site without touching config files
  • Global settings page for filters, etc
  • Overboard/multiboard/meta boards
  • User created board custom pages
  • File URL uploads

Setup

Please note these instructions are:

  • Are not step-by-step or complete
  • Assume you can read, are comfortable with a command line and have basic problem solving skills (aka google)
Requirements
  • Linux (debian used in this example)
  • Node.js (to run the app)
  • MongoDB (database, duh)
  • Redis (sessions, build task queue, locks, caching, websocket data)
  • Nginx (handle https, serve static content, GeoIP lookup)
  • Certbot/letsencrypt (for https cert)
  • Graphicsmagick+Imagemagick (thumbnailing images, generating captchas)
  • Ffmpeg (thumbnailing videos)
  • Bcrypt (account password hashes)

Install some dependencies. You may need to add some sources.

$ sudo apt-get update
$ sudo apt-get install bcrypt nginx ffmpeg imagemagick graphicsmagick

Install and configure auth for mongodb. This is to avoid out of date verisons in debian repos.

Install and configure Redis.

Install nodejs. You can use node version manager (nvm) to help with this. Once you have nvm, install the LTS version of nodejs (currently 10.x).

$ nvm install --lts

Configure nginx. Modify the example config included in configs/nginx.example and put it in /etc/nginx/sites-available, then symlink it to /etc/nginx/sites-enabled. Make sure the sites enabled folder is included by the main nginx.conf Next, get https with a certificate generated from letsencrypt.

Now clone the repo, browse to the folder and set some things up.

# in repo directory
$ nano configs/main.json #edit config with appropriate data
$ npm run-script setup #install dependencies, pm2, gulp and run gulp tasks
$ npm run-script start #start all the backend processes
$ pm2 list #list running pm2 processes
$ pm2 logs #see logs