blob: 73c202973fc88f57c35edf7262679f108e154432 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
read -r -d '' MESSAGE << EOM
If you use apache and want to enable the adminer interface just run the
following commands:
cat <<EOF | sudo tee -a /etc/httpd/conf/extra/httpd-adminer.conf
Alias /adminer "/usr/share/webapps/adminer"
<Directory "/usr/share/webapps/adminer">
AllowOverride All
Options FollowSymlinks
Require all granted
</Directory>
EOF
echo "Include conf/extra/httpd-adminer.conf" |
sudo tee -a /etc/httpd/conf/httpd.conf
Restart apache (systemctl restart httpd) and then you can access adminer on
http://localhost/adminer.
EOM
post_install() {
echo -e "$MESSAGE";
}
post_upgrade() {
echo -e "$MESSAGE";
}
# vim: set ts=2 sw=2 et:
|