site for the tildeverse irc network https://tilde.chat
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Go to file
Alexander 6e481daf06
continuous-integration/drone/push Build is passing Details
minor text corrections based on my previous contribution (#57)
there was 1 link wrong (nicks), a few typos and I made some text clearer I hope

also I added a note how to preview from a tilde server when running locally

Reviewed-on: #57
Co-authored-by: Alexander <alexlehm@cosmic.voyage>
Co-committed-by: Alexander <alexlehm@cosmic.voyage>
1 month ago
badges fix some typos and warnings 1 year ago
js use tildeverse/wiki 4 years ago
motd add wiki link 2 years ago
stats normalize webchat links 2 years ago
wiki minor text corrections based on my previous contribution (#57) 1 month ago
.drone.yml bump tildeteam/wiki 1 year ago
.editorconfig use tildeverse/wiki 4 years ago
.gitignore python3, blacklist 4 years ago
README.md add drone badge to README.md 3 years ago
apple-icon.png Have OGP preview show ~team logo 5 years ago
composer.json update tildeteam/wiki to 2.0 1 year ago
composer.lock bump tildeteam/wiki 1 year ago
favicon-96x96.png Add favicon (why ben why) 5 years ago
footer.php use tildeverse/wiki 4 years ago
gen_stats catch utf8 error 9 months ago
header.php offset #fragment urls 2 years ago
index.php remove link to mumble webclient 8 months ago
navbar.php remove link to mumble webclient 8 months ago
rules.txt fix link on rules.txt 3 years 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;
	}
}