Skip to content

Commit

Permalink
Merge pull request brettt89#45 from brettt89/hotfix/apache-template
Browse files Browse the repository at this point in the history
Update bad variable in Apache template
  • Loading branch information
brettt89 authored Aug 10, 2020
2 parents 9b330e3 + fb84f35 commit ffd6742
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion 5.6/apache/jessie/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ RUN { \
echo ' DocumentRoot ${DOCUMENT_ROOT}'; \
echo ' LogLevel warn'; \
echo ' ServerSignature Off'; \
echo ' <Directory ${ENVVAR}>'; \
echo ' <Directory ${DOCUMENT_ROOT}>'; \
echo ' Options +FollowSymLinks'; \
echo ' Options -ExecCGI -Includes -Indexes'; \
echo ' AllowOverride all'; \
Expand Down
2 changes: 1 addition & 1 deletion 5.6/apache/stretch/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ RUN { \
echo ' DocumentRoot ${DOCUMENT_ROOT}'; \
echo ' LogLevel warn'; \
echo ' ServerSignature Off'; \
echo ' <Directory ${ENVVAR}>'; \
echo ' <Directory ${DOCUMENT_ROOT}>'; \
echo ' Options +FollowSymLinks'; \
echo ' Options -ExecCGI -Includes -Indexes'; \
echo ' AllowOverride all'; \
Expand Down
2 changes: 1 addition & 1 deletion 7.1/apache/buster/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ RUN { \
echo ' DocumentRoot ${DOCUMENT_ROOT}'; \
echo ' LogLevel warn'; \
echo ' ServerSignature Off'; \
echo ' <Directory ${ENVVAR}>'; \
echo ' <Directory ${DOCUMENT_ROOT}>'; \
echo ' Options +FollowSymLinks'; \
echo ' Options -ExecCGI -Includes -Indexes'; \
echo ' AllowOverride all'; \
Expand Down
2 changes: 1 addition & 1 deletion 7.1/apache/jessie/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ RUN { \
echo ' DocumentRoot ${DOCUMENT_ROOT}'; \
echo ' LogLevel warn'; \
echo ' ServerSignature Off'; \
echo ' <Directory ${ENVVAR}>'; \
echo ' <Directory ${DOCUMENT_ROOT}>'; \
echo ' Options +FollowSymLinks'; \
echo ' Options -ExecCGI -Includes -Indexes'; \
echo ' AllowOverride all'; \
Expand Down
2 changes: 1 addition & 1 deletion 7.1/apache/stretch/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ RUN { \
echo ' DocumentRoot ${DOCUMENT_ROOT}'; \
echo ' LogLevel warn'; \
echo ' ServerSignature Off'; \
echo ' <Directory ${ENVVAR}>'; \
echo ' <Directory ${DOCUMENT_ROOT}>'; \
echo ' Options +FollowSymLinks'; \
echo ' Options -ExecCGI -Includes -Indexes'; \
echo ' AllowOverride all'; \
Expand Down
2 changes: 1 addition & 1 deletion 7.2/apache/buster/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ RUN { \
echo ' DocumentRoot ${DOCUMENT_ROOT}'; \
echo ' LogLevel warn'; \
echo ' ServerSignature Off'; \
echo ' <Directory ${ENVVAR}>'; \
echo ' <Directory ${DOCUMENT_ROOT}>'; \
echo ' Options +FollowSymLinks'; \
echo ' Options -ExecCGI -Includes -Indexes'; \
echo ' AllowOverride all'; \
Expand Down
2 changes: 1 addition & 1 deletion 7.2/apache/stretch/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ RUN { \
echo ' DocumentRoot ${DOCUMENT_ROOT}'; \
echo ' LogLevel warn'; \
echo ' ServerSignature Off'; \
echo ' <Directory ${ENVVAR}>'; \
echo ' <Directory ${DOCUMENT_ROOT}>'; \
echo ' Options +FollowSymLinks'; \
echo ' Options -ExecCGI -Includes -Indexes'; \
echo ' AllowOverride all'; \
Expand Down
2 changes: 1 addition & 1 deletion 7.3/apache/buster/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ RUN { \
echo ' DocumentRoot ${DOCUMENT_ROOT}'; \
echo ' LogLevel warn'; \
echo ' ServerSignature Off'; \
echo ' <Directory ${ENVVAR}>'; \
echo ' <Directory ${DOCUMENT_ROOT}>'; \
echo ' Options +FollowSymLinks'; \
echo ' Options -ExecCGI -Includes -Indexes'; \
echo ' AllowOverride all'; \
Expand Down
2 changes: 1 addition & 1 deletion 7.3/apache/stretch/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ RUN { \
echo ' DocumentRoot ${DOCUMENT_ROOT}'; \
echo ' LogLevel warn'; \
echo ' ServerSignature Off'; \
echo ' <Directory ${ENVVAR}>'; \
echo ' <Directory ${DOCUMENT_ROOT}>'; \
echo ' Options +FollowSymLinks'; \
echo ' Options -ExecCGI -Includes -Indexes'; \
echo ' AllowOverride all'; \
Expand Down
2 changes: 1 addition & 1 deletion 7.4/apache/buster/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ RUN { \
echo ' DocumentRoot ${DOCUMENT_ROOT}'; \
echo ' LogLevel warn'; \
echo ' ServerSignature Off'; \
echo ' <Directory ${ENVVAR}>'; \
echo ' <Directory ${DOCUMENT_ROOT}>'; \
echo ' Options +FollowSymLinks'; \
echo ' Options -ExecCGI -Includes -Indexes'; \
echo ' AllowOverride all'; \
Expand Down
2 changes: 1 addition & 1 deletion src/debian/Dockerfile.apache.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ RUN { \
echo ' DocumentRoot ${DOCUMENT_ROOT}'; \
echo ' LogLevel warn'; \
echo ' ServerSignature Off'; \
echo ' <Directory ${ENVVAR}>'; \
echo ' <Directory ${DOCUMENT_ROOT}>'; \
echo ' Options +FollowSymLinks'; \
echo ' Options -ExecCGI -Includes -Indexes'; \
echo ' AllowOverride all'; \
Expand Down

0 comments on commit ffd6742

Please sign in to comment.