diff --git a/cof/settings_dev.py b/cof/settings_dev.py index e219bc9c..45ea010b 100644 --- a/cof/settings_dev.py +++ b/cof/settings_dev.py @@ -178,12 +178,13 @@ CHANNEL_LAYERS = { "default": { "BACKEND": "asgi_redis.RedisChannelLayer", "CONFIG": { - "hosts": [("redis://:password_redis@127.0.0.1:6379/0")], + "hosts": [("redis://:redis_password@127.0.0.1:6379/0")], }, "ROUTING": "cof.routing.channel_routing", } } + def show_toolbar(request): """ On ne veut pas la vérification de INTERNAL_IPS faite par la debug-toolbar diff --git a/provisioning/bootstrap.sh b/provisioning/bootstrap.sh index 304d8cd0..b6df6caa 100644 --- a/provisioning/bootstrap.sh +++ b/provisioning/bootstrap.sh @@ -23,6 +23,7 @@ mysql -uroot -p$DBPASSWD -e "CREATE DATABASE $DBNAME; GRANT ALL PRIVILEGES ON $D # Installation de redis-server. Todo: lui mettre un mot de passe apt-get install -y redis-server +redis-cli config set requirepass redis_password # Mise en place du .bash_profile pour tout configurer lors du `vagrant ssh` cat > ~vagrant/.bash_profile <