├── .gitignore ├── .gitmodules ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── dev ├── .gitignore ├── docker-compose.yml └── volumes │ ├── bstats-legacy │ └── config.json │ ├── caddy │ └── Caddyfile │ ├── postgres │ └── .gitkeep │ └── redis │ ├── node-1m │ └── .gitkeep │ ├── node-2m │ └── .gitkeep │ ├── node-3m │ └── .gitkeep │ └── redis.conf ├── helpers ├── README.md ├── redis-insight.sh └── redis-user-admin.sh └── prod ├── .gitignore ├── add-backup-crontab.sh ├── backup.sh ├── bstats-backend.example.env ├── bstats-web.example.env ├── cleanup-backups.sh ├── docker-compose.yml ├── geoipupdate.example.env ├── postgres.example.env ├── redis-cluster-2025_09_19.tar.gz └── volumes ├── bstats-legacy └── config.json ├── caddy └── Caddyfile ├── nginx-backend └── nginx.conf └── redis ├── node-1m └── .gitkeep ├── node-2m └── .gitkeep ├── node-3m └── .gitkeep └── redis.conf /.gitignore: -------------------------------------------------------------------------------- 1 | prod/redis-cluster-**.tar -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bastian/bStats/HEAD/.gitmodules -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bastian/bStats/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bastian/bStats/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bastian/bStats/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bastian/bStats/HEAD/README.md -------------------------------------------------------------------------------- /dev/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bastian/bStats/HEAD/dev/.gitignore -------------------------------------------------------------------------------- /dev/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bastian/bStats/HEAD/dev/docker-compose.yml -------------------------------------------------------------------------------- /dev/volumes/bstats-legacy/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bastian/bStats/HEAD/dev/volumes/bstats-legacy/config.json -------------------------------------------------------------------------------- /dev/volumes/caddy/Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bastian/bStats/HEAD/dev/volumes/caddy/Caddyfile -------------------------------------------------------------------------------- /dev/volumes/postgres/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/volumes/redis/node-1m/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/volumes/redis/node-2m/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/volumes/redis/node-3m/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/volumes/redis/redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bastian/bStats/HEAD/dev/volumes/redis/redis.conf -------------------------------------------------------------------------------- /helpers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bastian/bStats/HEAD/helpers/README.md -------------------------------------------------------------------------------- /helpers/redis-insight.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bastian/bStats/HEAD/helpers/redis-insight.sh -------------------------------------------------------------------------------- /helpers/redis-user-admin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bastian/bStats/HEAD/helpers/redis-user-admin.sh -------------------------------------------------------------------------------- /prod/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bastian/bStats/HEAD/prod/.gitignore -------------------------------------------------------------------------------- /prod/add-backup-crontab.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bastian/bStats/HEAD/prod/add-backup-crontab.sh -------------------------------------------------------------------------------- /prod/backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bastian/bStats/HEAD/prod/backup.sh -------------------------------------------------------------------------------- /prod/bstats-backend.example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bastian/bStats/HEAD/prod/bstats-backend.example.env -------------------------------------------------------------------------------- /prod/bstats-web.example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bastian/bStats/HEAD/prod/bstats-web.example.env -------------------------------------------------------------------------------- /prod/cleanup-backups.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bastian/bStats/HEAD/prod/cleanup-backups.sh -------------------------------------------------------------------------------- /prod/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bastian/bStats/HEAD/prod/docker-compose.yml -------------------------------------------------------------------------------- /prod/geoipupdate.example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bastian/bStats/HEAD/prod/geoipupdate.example.env -------------------------------------------------------------------------------- /prod/postgres.example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bastian/bStats/HEAD/prod/postgres.example.env -------------------------------------------------------------------------------- /prod/redis-cluster-2025_09_19.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bastian/bStats/HEAD/prod/redis-cluster-2025_09_19.tar.gz -------------------------------------------------------------------------------- /prod/volumes/bstats-legacy/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bastian/bStats/HEAD/prod/volumes/bstats-legacy/config.json -------------------------------------------------------------------------------- /prod/volumes/caddy/Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bastian/bStats/HEAD/prod/volumes/caddy/Caddyfile -------------------------------------------------------------------------------- /prod/volumes/nginx-backend/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bastian/bStats/HEAD/prod/volumes/nginx-backend/nginx.conf -------------------------------------------------------------------------------- /prod/volumes/redis/node-1m/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prod/volumes/redis/node-2m/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prod/volumes/redis/node-3m/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prod/volumes/redis/redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bastian/bStats/HEAD/prod/volumes/redis/redis.conf --------------------------------------------------------------------------------