Go to file
Wruczek eb9acf1aeb Added adminlist sorting by online user status 2016-11-18 21:38:05 +01:00
api Using Bootstrap pull right class + code format 2016-10-31 03:18:52 +01:00
config Sexier footer 2016-11-13 18:02:32 +01:00
css Sexier footer 2016-11-13 18:02:32 +01:00
errorpages Experimental nginx support 2016-09-28 01:20:56 +02:00
img v 1.2.4 2016-07-24 00:32:46 +02:00
include Added adminlist sorting by online user status 2016-11-18 21:38:05 +01:00
js Added fa-fw to normalize space taken by icons 2016-10-20 21:02:31 +02:00
lib Parsedown update, introducing responsive images 2016-10-25 19:47:49 +02:00
.gitattributes :neckbeard: Added .gitattributes 2016-06-28 23:08:52 +02:00
.gitignore Small changes, fixed rare timezone issue 2016-10-12 21:57:49 +02:00
.htaccess htaccess changes 2016-11-06 00:00:18 +01:00
LICENSE.md Initial commit 2016-06-28 23:18:59 +02:00
README.md Update README.md 2016-10-30 16:35:48 +01:00
bans.php Use three stars when censoring IP addresses 2016-11-18 21:23:56 +01:00
index.php Using Bootstrap pull right class + code format 2016-10-31 03:18:52 +01:00
rules.php Using Bootstrap pull right class + code format 2016-10-31 03:18:52 +01:00
viewer.php Using Bootstrap pull right class + code format 2016-10-31 03:18:52 +01:00

README.md

ts-website

Website screenshot

More screenshots


ts-website - free website for your TeamSpeak 3 server

I am happy to take any programming-related requests, add additional features or modify the code to suit your needs for a small donation :) I am experienced at Java, PHP, HTML, CSS, Javascript, SQL, server configurations ect. If you are interested or just want to chat about random geek stuff just message me :D

Main Features

  • News page, dynamic server status, admin list with status, server viewer, ban list and rules page
  • Multiple languages with auto-detection for default language
  • PHP 7.0, Apache 2 and nginx support
  • Modern and responsive design
  • Caching [WIP]
  • Free, Open source, under MIT license

Requirements

PHP Installation:

  • PHP 5.5 or newer (although latest PHP version is highly recommended!)
  • Installed and enabled mbstring extension

Recommended nginx configuration:

  • Up-to-date nginx server
  • enablehta in config.php set to true
  • nginx config set to the following: (Remember that you need to adjust this config to suit your server!)
server {
	listen 80 default_server;
	listen [::]:80 default_server;

	root /var/www/html;

	# Add index.php to the list if you are using PHP
	index index.php index.html index.htm;

	server_name _;

	location / {
		# First attempt to serve request as file, then
		# as directory, then fall back to displaying a 404.
		try_files $uri $uri/ $uri.html $uri.php$is_args$query_string;
	}

	# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
	
	location ~ \.php$ {
		include snippets/fastcgi-php.conf;
	
		# With php7.0-cgi alone:
		#fastcgi_pass 127.0.0.1:9000;
		# With php7.0-fpm:
		fastcgi_pass unix:/run/php/php7.0-fpm.sock;
	}

	 #deny access to .htaccess files, if Apache's document root
	 #concurs with nginx's one
	location ~ /\.ht {
		deny all;
	}

	#error pages - REMEBER TO CHANGE THE PATH!
	error_page 403 /path_to_ts-website_please_change_me/errorpages/403.html;
	error_page 404 /path_to_ts-website_please_change_me/errorpages/404.html;
	error_page 500 502 503 504 /path_to_ts-website_please_change_me/errorpages/500.html;
}

Recommended Apache configuration:

  • Up-to-date Apache server
  • Enabled mod_rewrite (sudo a2enmod rewrite && service apache2 reload)
  • Enabled support of htaccess
  • enablehta in config.php set to true

If you experience any problems, make sure that directory /var/www is writeable.