Created
September 24, 2014 13:39
-
-
Save g-P/ce0a5fddf6a62b270bec to your computer and use it in GitHub Desktop.
Add phpRedisAdmin to apache2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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