mirror of
https://github.com/nextcloud/nextcloudpi.git
synced 2026-01-10 15:12:01 -03:30
64 lines
1.8 KiB
Bash
64 lines
1.8 KiB
Bash
#!/bin/bash
|
|
#
|
|
# Activate/deactivate a pretty URL without index.php
|
|
#
|
|
#
|
|
# Copyleft 2018 by Timo Stiefel and xxx
|
|
# GPL licensed (see end of file) * Use at your own risk!
|
|
|
|
|
|
|
|
install() { :; }
|
|
|
|
isactive()
|
|
{
|
|
local REWRITEBASE
|
|
REWRITEBASE="$( grep RewriteBase /var/www/nextcloud/.htaccess )" || return 1
|
|
[[ $REWRITEBASE != 1 ]]
|
|
}
|
|
|
|
configure()
|
|
{
|
|
# make sure overwrite.cli.url end with a '/'
|
|
local URL
|
|
URL="$(ncc config:system:get overwrite.cli.url)"
|
|
[[ "${URL: -1}" != "/" ]] && ncc config:system:set overwrite.cli.url --value="${URL}/"
|
|
|
|
if [[ $ACTIVE != "yes" ]]; then
|
|
ncc config:system:set htaccess.RewriteBase --value=""
|
|
ncc maintenance:update:htaccess
|
|
[[ $? -ne 0 ]] && {
|
|
echo "There has been an error."
|
|
return 1
|
|
}
|
|
echo "Your cloud does no longer have a pretty domain name."
|
|
else
|
|
ncc config:system:set htaccess.RewriteBase --value="/"
|
|
ncc maintenance:update:htaccess
|
|
[[ $? -ne 0 ]] && {
|
|
echo "There has been an error."
|
|
return 1
|
|
}
|
|
echo "Your cloud now has a pretty domain name."
|
|
fi
|
|
apachectl -k graceful
|
|
return 0
|
|
}
|
|
|
|
# License
|
|
#
|
|
# This script is free software; you can redistribute it and/or modify it
|
|
# under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This script is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this script; if not, write to the
|
|
# Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
|
# Boston, MA 02111-1307 USA
|