{"id":21344486,"url":"https://github.com/s00d/redisweb","last_synced_at":"2026-01-03T02:11:57.652Z","repository":{"id":62538778,"uuid":"104649590","full_name":"s00d/redisWeb","owner":"s00d","description":"Redis-web is a simple web interface in Laravel and Vue to manage Redis databases.","archived":false,"fork":false,"pushed_at":"2017-12-01T09:45:29.000Z","size":6610,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-03T02:34:00.412Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Vue","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/s00d.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-09-24T14:20:05.000Z","updated_at":"2017-09-30T12:26:50.000Z","dependencies_parsed_at":"2022-11-02T16:15:19.090Z","dependency_job_id":null,"html_url":"https://github.com/s00d/redisWeb","commit_stats":null,"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/s00d%2FredisWeb","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/s00d%2FredisWeb/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/s00d%2FredisWeb/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/s00d%2FredisWeb/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/s00d","download_url":"https://codeload.github.com/s00d/redisWeb/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243819312,"owners_count":20352868,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-22T01:19:16.995Z","updated_at":"2026-01-03T02:11:57.616Z","avatar_url":"https://github.com/s00d.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"Redis-WEB\n=========\n\nRedis-web is a simple web interface in [Slim](https://github.com/slimphp/Slim)\nand [Vue](https://github.com/vuejs/vue) to manage [Redis](http://redis.io/) databases.\n\nIt is released under the\n[Creative Commons Attribution 3.0 license](http://creativecommons.org/licenses/by/3.0/).\nThis code is being developed and maintained by [Pavel Kuzmin](https://github.com/s00d/).\n\nYou can send comments, patches, questions\n[here on github](https://github.com/s00d/redisWeb/issues)\n\nSpecial thanks to [Erik Dubbelboer](https://github.com/ErikDubbelboer/)\n\nPreview\n=======\n\n\u003cp align=\"center\"\u003e\n  \u003cimg width=\"600\" height=\"400\" src=\"https://image.prntscr.com/image/5YRJw7Q2RX6g_xVAtZED6A.png\"\u003e\u003cbr\u003e\n  \u003cimg width=\"600\" height=\"400\" src=\"https://image.prntscr.com/image/Zq6zI-4STlqFAHADFJgW1Q.png\"\u003e\n\u003c/p\u003e\n\n\n\nInstalling/Configuring\n======================\n\nTo install [redis-web](https://packagist.org/packages/s00d/redis-web) through [composer](http://getcomposer.org/) you need to execute the following commands:\n\n```\nphp composer.phar create-project -s dev s00d/redis-web path/to/install\n```\n\nor you can also do a manual install using:\n\n```\ngit clone https://github.com/s00d/redisWeb.git\ncd redisWeb\n```\n\nInstall and run:\n\n```\ncomposer install \u0026\u0026 composer update\nnpm i\nnpm prod\n```\n\n\n\nSettings\n========\nCopy ``.env.example`` to ``.env`` and edit it with your specific configuration.\n\nall setting in file ``./Settings.php``\n\n#### Passwords:\n\nCleartext 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\n```\n$ htpasswd -nbBC 10 root password\nroot:$2y$10$ZDEIUCQ7BSDLP3d2MI4HIOI4.CcaYqRj8ICCyJT2isOBd5JLM7zYe\n```\n\nAdd to settings\n```\n\"users\" =\u003e [\n  \"root\" =\u003e '$2y$10$ZDEIUCQ7BSDLP3d2MI4HIOI4.CcaYqRj8ICCyJT2isOBd5JLM7zYe'\n]\n```\n\n\n#### Apache configuration\nEnsure your ``.htaccess`` and ``index.php`` files are in the same public-accessible directory. The ``.htaccess`` file should contain this code:\n```\nRewriteEngine On\nRewriteCond %{REQUEST_FILENAME} !-f\nRewriteCond %{REQUEST_FILENAME} !-d\nRewriteRule ^ index.php [QSA,L]\n```\nMake sure your Apache virtual host is configured with the AllowOverride option so that the .htaccess rewrite rules can be used:\n```\nAllowOverride All\n```\n\n#### Nginx configuration\nThis 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.\nYou should update the ``server_name``, ``error_log``, ``access_log``, and ``root directives`` with your own values.\n```\nserver {\n    listen 80;\n    server_name example.com;\n    index index.php;\n    error_log /path/to/example.error.log;\n    access_log /path/to/example.access.log;\n    root /path/to/public;\n\n    location / {\n        try_files $uri /index.php$is_args$args;\n    }\n\n    location ~ \\.php {\n        try_files $uri =404;\n        fastcgi_split_path_info ^(.+\\.php)(/.+)$;\n        include fastcgi_params;\n        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;\n        fastcgi_param SCRIPT_NAME $fastcgi_script_name;\n        fastcgi_index index.php;\n        fastcgi_pass 127.0.0.1:9000;\n    }\n}\n```\n\nQueues!\n=======\nShow all queues from redis:\n\n\u003cp align=\"center\"\u003e\n  \u003cimg width=\"300\" height=\"150\" src=\"https://image.prntscr.com/image/9yn9HktGRL_SznmjyWqn9w.png\"\u003e\u003cbr\u003e\n  \u003c/p\u003e\n\n\n\nInstall latest PM2 stable version is installable via NPM:\n```\nnpm install pm2@latest -g\n```\n\nRun\n\n```\nnpm run socket:start\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fs00d%2Fredisweb","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fs00d%2Fredisweb","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fs00d%2Fredisweb/lists"}