diff options
author | Suren A. Chilingaryan <csa@suren.me> | 2019-08-14 03:42:08 +0200 |
---|---|---|
committer | Suren A. Chilingaryan <csa@suren.me> | 2019-08-14 03:42:08 +0200 |
commit | 5f519300fa70f938f9c2bb75ed71450839ed0073 (patch) | |
tree | d7bfe20476feb4958326a9d12ec2dcaeae23cc69 /2.4/docker-entrypoint.sh | |
parent | 52c0571557fac5a99ea8e35563be1c1f6e4fc52c (diff) | |
download | apache-5f519300fa70f938f9c2bb75ed71450839ed0073.tar.gz apache-5f519300fa70f938f9c2bb75ed71450839ed0073.tar.bz2 apache-5f519300fa70f938f9c2bb75ed71450839ed0073.tar.xz apache-5f519300fa70f938f9c2bb75ed71450839ed0073.zip |
Fix port in Dockerfile instead of entrypoint.sh
Diffstat (limited to '2.4/docker-entrypoint.sh')
-rwxr-xr-x | 2.4/docker-entrypoint.sh | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/2.4/docker-entrypoint.sh b/2.4/docker-entrypoint.sh index 117f63c..4430d20 100755 --- a/2.4/docker-entrypoint.sh +++ b/2.4/docker-entrypoint.sh @@ -14,11 +14,6 @@ set -e # Just in case this environment variable has gone missing. HTTPD_PREFIX="${HTTPD_PREFIX:-/usr/local/apache2}" -# Configure port -sed -e "s|Listen .*|Listen 8080|" \ - -i "$HTTPD_PREFIX"/conf/httpd.conf - - # Configure vhosts. if [ "x$SERVER_NAMES" != "x" ]; then # Use first domain as Apache ServerName. |