Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

A web-sided server browser for the game Team Fortress 2. Made in 2015.

NotificationsYou must be signed in to change notification settings

gamemann/Browser.TF

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A web-sided server browser for the gameTeam Fortress 2. I made this back in 2015/2016 when I was in High School and had the domainbrowser.tf up until mid-2022. Unfortunately, I couldn't afford the domain at the time and lost it. Afterwards, I tried getting it back, but another company had already taken it. Apparently the new company is selling the domain, but they won't reply to anything I send them.

This website was actively used by quite a few people in the past!

The website is currently up onbtf.bestservers.io. The domainbestservers.io will be used for a new, modern, and global server browser in the future that'll support multiple games and much more!

Warning - I no longer support this project and the code is quite outdated, but simple at the same time.

Deploying

Docker Compose

The website's Docker Compose config may found below.

version:'3.9'services:nginx:image:nginx:latestports:      -8001:80volumes:      -./app:/app      -./nginx.conf:/etc/nginx/conf.d/default.conflinks:      -phpphp:image:php:8-fpmvolumes:      -./app:/app

The NGINX config copied into the NGINX Docker container may be found below.

server {    index index.php;    root /app;    server_name btf.browser.tf;    error_log /var/log/nginx/error.log;    access_log off;        location ~ \.php$ {        try_files $uri =404;        fastcgi_split_path_info ^(.+\.php)(/.+)$;        fastcgi_pass php:9000;        fastcgi_index index.php;        include fastcgi_params;        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;        fastcgi_param PATH_INFO $fastcgi_path_info;    }}

You will need to create another web server config (e.g. NGINX) on the host machine redirecting to port8001 using the above configuration.

Credits

About

A web-sided server browser for the game Team Fortress 2. Made in 2015.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp