PHPackages                             s00d/redis-web - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Caching](/categories/caching)
4. /
5. s00d/redis-web

ActiveProject[Caching](/categories/caching)

s00d/redis-web
==============

Redis-web is a simple web interface in Laravel and Vue to manage Redis databases.

0.3.6(8y ago)111MITVuePHP &gt;=5.5.0

Since Sep 24Pushed 8y ago1 watchersCompare

[ Source](https://github.com/s00d/redisWeb)[ Packagist](https://packagist.org/packages/s00d/redis-web)[ Docs](https://github.com/s00d/redisWeb)[ RSS](/packages/s00d-redis-web/feed)WikiDiscussions master Synced 3d ago

READMEChangelog (10)Dependencies (15)Versions (9)Used By (0)

Redis-WEB
=========

[](#redis-web)

Redis-web is a simple web interface in [Slim](https://github.com/slimphp/Slim)and [Vue](https://github.com/vuejs/vue) to manage [Redis](http://redis.io/) databases.

It is released under the [Creative Commons Attribution 3.0 license](http://creativecommons.org/licenses/by/3.0/). This code is being developed and maintained by [Pavel Kuzmin](https://github.com/s00d/).

You can send comments, patches, questions [here on github](https://github.com/s00d/redisWeb/issues)

Special thanks to [Erik Dubbelboer](https://github.com/ErikDubbelboer/)

Preview
=======

[](#preview)

 [![](https://camo.githubusercontent.com/a3ddaec5145354b6ead1c16ee71368d8add5614b6163816b8437ea9ce497a9b6/68747470733a2f2f696d6167652e70726e747363722e636f6d2f696d6167652f3559524a77375132525836675f785641745a454436412e706e67)](https://camo.githubusercontent.com/a3ddaec5145354b6ead1c16ee71368d8add5614b6163816b8437ea9ce497a9b6/68747470733a2f2f696d6167652e70726e747363722e636f6d2f696d6167652f3559524a77375132525836675f785641745a454436412e706e67)
 [![](https://camo.githubusercontent.com/6119cfdf2f29f3b592e7150cf858039e44bf33f053b10852f17b4c1d7eb80f5e/68747470733a2f2f696d6167652e70726e747363722e636f6d2f696d6167652f5a71367a492d3453546c714641484144464a675731512e706e67)](https://camo.githubusercontent.com/6119cfdf2f29f3b592e7150cf858039e44bf33f053b10852f17b4c1d7eb80f5e/68747470733a2f2f696d6167652e70726e747363722e636f6d2f696d6167652f5a71367a492d3453546c714641484144464a675731512e706e67)

Installing/Configuring
======================

[](#installingconfiguring)

To install [redis-web](https://packagist.org/packages/s00d/redis-web) through [composer](http://getcomposer.org/) you need to execute the following commands:

```
php composer.phar create-project -s dev s00d/redis-web path/to/install

```

or you can also do a manual install using:

```
git clone https://github.com/s00d/redisWeb.git
cd redisWeb

```

Install and run:

```
composer install && composer update
npm i
npm prod

```

Settings
========

[](#settings)

Copy `.env.example` to `.env` and edit it with your specific configuration.

all setting in file `./Settings.php`

#### Passwords:

[](#passwords)

Cleartext passwords are only good for quick testing. You probably want to use hashed passwords. Hashed password can be generated with htpasswd command line tool or password\_hash() PHP function

```
$ htpasswd -nbBC 10 root password
root:$2y$10$ZDEIUCQ7BSDLP3d2MI4HIOI4.CcaYqRj8ICCyJT2isOBd5JLM7zYe

```

Add to settings

```
"users" => [
  "root" => '$2y$10$ZDEIUCQ7BSDLP3d2MI4HIOI4.CcaYqRj8ICCyJT2isOBd5JLM7zYe'
]

```

#### Apache configuration

[](#apache-configuration)

Ensure your `.htaccess` and `index.php` files are in the same public-accessible directory. The `.htaccess` file should contain this code:

```
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ index.php [QSA,L]

```

Make sure your Apache virtual host is configured with the AllowOverride option so that the .htaccess rewrite rules can be used:

```
AllowOverride All

```

#### Nginx configuration

[](#nginx-configuration)

This is an example Nginx virtual host configuration for the domain `example.com`. It listens for inbound HTTP connections on port 80. It assumes a PHP-FPM server is running on port 9000. You should update the `server_name`, `error_log`, `access_log`, and `root directives` with your own values.

```
server {
    listen 80;
    server_name example.com;
    index index.php;
    error_log /path/to/example.error.log;
    access_log /path/to/example.access.log;
    root /path/to/public;

    location / {
        try_files $uri /index.php$is_args$args;
    }

    location ~ \.php {
        try_files $uri =404;
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_param SCRIPT_NAME $fastcgi_script_name;
        fastcgi_index index.php;
        fastcgi_pass 127.0.0.1:9000;
    }
}

```

Queues!
=======

[](#queues)

Show all queues from redis:

 [![](https://camo.githubusercontent.com/59bf1ff46fd2d8ec10871f083842b2f64bbdc6b7264b6092ddc207c95eb28b31/68747470733a2f2f696d6167652e70726e747363722e636f6d2f696d6167652f39796e39486b7447524c5f537a6e6d6a7957716e39772e706e67)](https://camo.githubusercontent.com/59bf1ff46fd2d8ec10871f083842b2f64bbdc6b7264b6092ddc207c95eb28b31/68747470733a2f2f696d6167652e70726e747363722e636f6d2f696d6167652f39796e39486b7447524c5f537a6e6d6a7957716e39772e706e67)

Install latest PM2 stable version is installable via NPM:

```
npm install pm2@latest -g

```

Run

```
npm run socket:start

```

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~5 days

Total

8

Last Release

3120d ago

PHP version history (2 changes)0.1.0PHP &gt;=7.0.0

0.2.0PHP &gt;=5.5.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/b58c344f6f895edc186de3097331fc96b852a970403edde4c9bbb50bd60388e6?d=identicon)[s00d](/maintainers/s00d)

---

Top Contributors

[![s00d](https://avatars.githubusercontent.com/u/2684895?v=4)](https://github.com/s00d "s00d (24 commits)")

---

Tags

webslimguiredisvue

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/s00d-redis-web/health.svg)

```
[![Health](https://phpackages.com/badges/s00d-redis-web/health.svg)](https://phpackages.com/packages/s00d-redis-web)
```

###  Alternatives

[snc/redis-bundle

A Redis bundle for Symfony

1.0k39.4M67](/packages/snc-redis-bundle)[mjphaynes/php-resque

Redis backed library for creating background jobs and processing them later.

228199.3k2](/packages/mjphaynes-php-resque)[pdffiller/qless-php

PHP Bindings for qless

29113.2k1](/packages/pdffiller-qless-php)[monospice/laravel-redis-sentinel-drivers

Redis Sentinel integration for Laravel and Lumen.

103830.5k](/packages/monospice-laravel-redis-sentinel-drivers)[cache/predis-adapter

A PSR-6 cache implementation using Redis (Predis). This implementation supports tags

272.6M13](/packages/cache-predis-adapter)[robinn/phpcacheadmin

A web dashboard for your favorite caching system.

4441.1k1](/packages/robinn-phpcacheadmin)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
