site for the tildeverse irc network https://tilde.chat
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.
 
 
 
Ben Harris 6786dcf281 update composer deps 2 weeks ago
badges Force badges to be green and not blue 1 year ago
js use tildeverse/wiki 1 year ago
motd fix typo 3 weeks ago
stats add motd generator 2 months ago
wiki bots.md: merge radiobot entry into tildebot entry 3 months ago
.drone.yml disable clone and only run on master 11 months ago
.editorconfig use tildeverse/wiki 1 year ago
.gitignore python3, blacklist 1 year ago
README.md add drone badge to README.md 11 months ago
apple-icon.png Have OGP preview show ~team logo 2 years ago
composer.json update composer deps 2 weeks ago
composer.lock update composer deps 2 weeks ago
favicon-96x96.png Add favicon (why ben why) 2 years ago
footer.php use tildeverse/wiki 1 year ago
gen_stats fix null modes error 2 weeks ago
header.php change default header 2 years ago
index.php add link to mumble webclient 5 months ago
navbar.php update webchat links 5 months ago
rules.txt fix link on rules.txt 6 months ago

README.md

tilde.chat

Build Status

this is the source for tilde.chat.

if you have any fixes/updates that you need to make, feel free to open a PR.

wiki updates are part of this repo as well.

stop by irc and say hi!


deployment

  1. clone the repo into your webroot
  2. composer install
  3. make sure inspircd has m_httpd.so m_httpd_stats.so loaded
  4. add a local bind for stats on 8081: <bind address="127.0.0.1" port="8081" type="httpd">
  5. add gen_stats to a crontab for a user that can write in the webroot: * * * * * /var/www/tilde.chat/gen_stats
  6. nginx config for pretty urls
location ~* ^/wiki/(.+)$ {
	try_files $uri $uri/ /wiki/index.php?page=$1;
	location ~ \.php$ {
		include snippets/fastcgi-php.conf;
		fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
	}
}