httpd
httpd copied to clipboard
Docker Official Image packaging for Apache HTTP Server
Dockerfile: ```dockerfile FROM httpd:2.4.54 RUN sed -i -e 's/^#\(LoadModule .*mod_rewrite.so\)/\1/' conf/httpd.conf ``` It works on amd64, but doesn't work on arm64. Error: exec /usr/local/bin/httpd-foreground: exec format error
**PROBLEM** Using the command from the docker hub page: `docker run -dit --name my-apache-app -p 8080:80 -v "$PWD":/usr/local/apache2/htdocs/ httpd:2.4` And then vising the URL I see "It works!" instead of...
Background: - docker-library/official-images#16044 Alternative to: - #248 - - - - `SOURCE_DATE_EPOCH` is added. The value is consumed by the build scripts to make the `httpd` binary reproducible. - GNU...
Hello, I'm running a webdav server using this image `http:bookworm` as base. When I try to PUT a file with: ``` curl -T po.txt http://myserver.me/dir/ ``` I get: ``` 400...
When trying to execute a cgi-file, suexec throws an error, because the apache process is running as user "www-data", whilst the flag "AP_HTTPD_USER" is set to "www" by default. [2023-05-22...
Hi, I'm using your image to provide webdav to my Zotero. With the alpine image I get the follwing error once Zotero tries to create a folder: ``` 172.200.0.2 -...
Hello, The docker images based on alpine seems to be outdated as they are built 3 month ago. Is there any issue / limitation that blocks the publication of new...