site for the tildeverse irc network https://tilde.chat
Go to file
Ben Harris 256b6b06fc
continuous-integration/drone/push Build is passing Details
Merge pull request 'Add #aussie to shared strike policy' (#50) from fosslinux/tilde.chat:ssp into master
Reviewed-on: #50
2021-10-15 18:19:42 +00:00
badges normalize webchat links 2021-09-17 14:07:44 -04:00
js use tildeverse/wiki 2019-07-03 01:11:55 -04:00
motd add wiki link 2020-11-18 10:49:11 -05:00
stats normalize webchat links 2021-09-17 14:07:44 -04:00
wiki Add #aussie to shared strike policy 2021-10-15 15:00:28 +11:00
.drone.yml use -C instead of cd 2021-04-02 11:16:03 -04:00
.editorconfig use tildeverse/wiki 2019-07-03 01:11:55 -04:00
.gitignore python3, blacklist 2019-03-16 14:53:20 -04:00
README.md add drone badge to README.md 2019-12-06 10:59:59 -05:00
apple-icon.png Have OGP preview show ~team logo 2018-06-20 17:26:28 -04:00
composer.json update tildeteam/wiki to 1.0 2021-03-20 13:14:16 -04:00
composer.lock update tildeteam/wiki to 1.0 2021-03-20 13:14:16 -04:00
favicon-96x96.png Add favicon (why ben why) 2018-06-20 18:10:14 -04:00
footer.php use tildeverse/wiki 2019-07-03 01:11:55 -04:00
gen_stats normalize webchat links 2021-09-17 14:07:44 -04:00
header.php offset #fragment urls 2021-03-05 11:39:59 -05:00
index.php normalize webchat links 2021-09-17 14:07:44 -04:00
navbar.php update webirc links and add mumble 2021-05-27 15:34:30 -04:00
rules.txt fix link on rules.txt 2020-04-30 15:01:35 -04:00

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;
	}
}