46 lines
1.9 KiB
Bash
46 lines
1.9 KiB
Bash
#!/bin/bash
|
|
# Author: yeho <lj2007331 AT gmail.com>
|
|
# BLOG: https://linuxeye.com
|
|
#
|
|
# Notes: OneinStack for CentOS/RedHat 7+ Debian 9+ and Ubuntu 16+
|
|
#
|
|
# Project home page:
|
|
# https://oneinstack.com
|
|
# https://github.com/oneinstack/oneinstack
|
|
|
|
DEMO() {
|
|
pushd ${oneinstack_dir}/src > /dev/null
|
|
if [ ! -e ${wwwroot_dir}/default/index.html ]; then
|
|
[ "${OUTIP_STATE}"x == "China"x ] && /bin/cp ${oneinstack_dir}/config/index_cn.html ${wwwroot_dir}/default/index.html || /bin/cp ${oneinstack_dir}/config/index.html ${wwwroot_dir}/default
|
|
fi
|
|
|
|
if [ -e "${php_install_dir}/bin/php" ]; then
|
|
src_url=${mirror_link}/oneinstack/src/xprober.php && Download_src
|
|
/bin/cp xprober.php ${wwwroot_dir}/default
|
|
|
|
echo "<?php phpinfo() ?>" > ${wwwroot_dir}/default/phpinfo.php
|
|
case "${phpcache_option}" in
|
|
1)
|
|
src_url=${mirror_link}/oneinstack/src/ocp.php && Download_src
|
|
/bin/cp ocp.php ${wwwroot_dir}/default
|
|
;;
|
|
2)
|
|
sed -i 's@<a href="/ocp.php" target="_blank" class="links">Opcache</a>@<a href="/apc.php" target="_blank" class="links">APC</a>@' ${wwwroot_dir}/default/index.html
|
|
;;
|
|
3)
|
|
sed -i 's@<a href="/ocp.php" target="_blank" class="links">Opcache</a>@<a href="/xcache" target="_blank" class="links">xcache</a>@' ${wwwroot_dir}/default/index.html
|
|
;;
|
|
4)
|
|
/bin/cp eaccelerator-*/control.php ${wwwroot_dir}/default
|
|
sed -i 's@<a href="/ocp.php" target="_blank" class="links">Opcache</a>@<a href="/control.php" target="_blank" class="links">eAccelerator</a>@' ${wwwroot_dir}/default/index.html
|
|
;;
|
|
*)
|
|
sed -i 's@<a href="/ocp.php" target="_blank" class="links">Opcache</a>@@' ${wwwroot_dir}/default/index.html
|
|
;;
|
|
esac
|
|
fi
|
|
chown -R ${run_user}:${run_group} ${wwwroot_dir}/default
|
|
[ -e /bin/systemctl ] && systemctl daemon-reload
|
|
popd > /dev/null
|
|
}
|