Skip to content

Instantly share code, notes, and snippets.

@g-P
Created September 24, 2014 13:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save g-P/ce0a5fddf6a62b270bec to your computer and use it in GitHub Desktop.
Save g-P/ce0a5fddf6a62b270bec to your computer and use it in GitHub Desktop.
Add phpRedisAdmin to apache2
Alias /phpredisadmin /var/www/redisadmin
<Directory /var/www/redisadmin>
Options FollowSymLinks
DirectoryIndex index.php
<IfModule mod_php5.c>
AddType application/x-httpd-php .php
php_flag magic_quotes_gpc Off
php_flag track_vars On
php_flag register_globals Off
php_admin_flag allow_url_fopen Off
php_value include_path .
</IfModule>
</Directory>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment