mirror of
https://github.com/nextcloud/docker.git
synced 2025-04-25 12:50:54 +02:00
Pretty URLs for apache
This commit is contained in:
parent
748af1e7b4
commit
fd0cc806c8
4 changed files with 18 additions and 5 deletions
11
update.sh
11
update.sh
|
@ -45,17 +45,18 @@ for latest in "${latests[@]}"; do
|
|||
s/%%CMD%%/'"${cmd[$variant]}"'/g;
|
||||
' "$version/$variant/Dockerfile"
|
||||
|
||||
# Remove Apache commands if we're not an Apache variant.
|
||||
if [ "$variant" != "apache" ]; then
|
||||
sed -ri -e '/a2enmod/d' "$version/$variant/Dockerfile"
|
||||
fi
|
||||
|
||||
# Copy the docker-entrypoint.
|
||||
cp docker-entrypoint.sh "$version/$variant/docker-entrypoint.sh"
|
||||
|
||||
# Copy the config directory
|
||||
cp -rT .config "$version/$variant/config"
|
||||
|
||||
# Remove Apache commands and configs if we're not an Apache variant.
|
||||
if [ "$variant" != "apache" ]; then
|
||||
sed -ri -e '/a2enmod/d' "$version/$variant/Dockerfile"
|
||||
rm "$version/$variant/config/apache-pretty-urls.config.php"
|
||||
fi
|
||||
|
||||
for arch in i386 amd64; do
|
||||
travisEnv='\n - env: VERSION='"$version"' VARIANT='"$variant"' ARCH='"$arch$travisEnv"
|
||||
done
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue