mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2025-12-15 19:06:03 +00:00
9 lines
150 B
Bash
Executable File
9 lines
150 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cat <<EOF > /redis.conf
|
|
requirepass $REDISPASS
|
|
user quota_notify on nopass ~QW_* -@all +get +hget +ping
|
|
EOF
|
|
|
|
exec redis-server /redis.conf
|