Skip to content

Commit b90769b

Browse files
author
eric o meehan
committed
v0.0.1
1 parent ba9558d commit b90769b

File tree

4 files changed

+583
-0
lines changed

4 files changed

+583
-0
lines changed

Dockerfile

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
FROM httpd
2+
RUN apt-get update && apt-get install -y libapache2-mod-wsgi-py3
3+
COPY conf/httpd.conf /usr/local/apache2/conf/httpd.conf
4+
COPY conf/wsgi_app.py /usr/local/apache2/htdocs/wsgi_app.py
5+
RUN cp /usr/lib/apache2/modules/mod_wsgi.so /usr/local/apache2/modules/mod_wsgi.so

README.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Docker httpd mod_wsgi
2+
3+
Eric O'Neill Meehan
4+
August 1, 2024
5+
6+
## Description
7+
8+
A Docker container running Apache HTTPD with mod_wsgi.
9+
10+
## Sources
11+
12+
- Official Docker httpd image: https://hub.docker.com/_/httpd

0 commit comments

Comments
 (0)