blob: cfce99752535179df5352dfdbf6dd9702394ca31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
# When don't need (and should not) to let sensitive files readable by www-data
# group when running with php-fpm.
chown roundcube:roundcube /etc/roundcube/session_key
cat >&2 <<EOF
*
* Point your web server to /run/roundcube/fastcgi.sock and start Roundcube with
* /etc/init.d/roundcube start. You can modify php-fpm settings in
* /etc/php7/fpm.d/roundcube.conf.
*
EOF
exit 0
|