From 4eb8d823dacda6c27c04fb03b19a10519335116f Mon Sep 17 00:00:00 2001 From: robin Date: Sun, 17 Dec 2023 13:53:00 +0000 Subject: [PATCH] first commit --- Dockerfile | 2 ++ my-httpd.conf | 7 +++++++ 2 files changed, 9 insertions(+) create mode 100644 Dockerfile create mode 100644 my-httpd.conf diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..d85bd2c --- /dev/null +++ b/Dockerfile @@ -0,0 +1,2 @@ +FROM httpd:2.4 +COPY ./my-httpd.conf /usr/local/apache2/conf/httpd.conf diff --git a/my-httpd.conf b/my-httpd.conf new file mode 100644 index 0000000..97f4f60 --- /dev/null +++ b/my-httpd.conf @@ -0,0 +1,7 @@ +LoadModule rewrite_module modules/mod_rewrite.so + + + Options Indexes FollowSymLinks + AllowOverride All + Require all granted +