diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2020-02-05 12:33:19 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2020-02-05 12:33:19 +0100 |
commit | 45e4e1e0a3ae5a68cfaaa85a548c38085809734d (patch) | |
tree | 2bd8ada6881bf635ba5956ab4099272d068eda5d /etc | |
download | s2i-base-httpd-45e4e1e0a3ae5a68cfaaa85a548c38085809734d.tar.gz |
initial commit
Diffstat (limited to 'etc')
-rw-r--r-- | etc/app-root.conf | 6 | ||||
-rw-r--r-- | etc/documentroot.conf | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/etc/app-root.conf b/etc/app-root.conf new file mode 100644 index 0000000..2d68317 --- /dev/null +++ b/etc/app-root.conf @@ -0,0 +1,6 @@ +Listen 8080 +<Directory "/opt/app-root/src"> + Options Indexes + IndexOptions FancyIndexing NameWidth=* + Require all granted +</Directory> diff --git a/etc/documentroot.conf b/etc/documentroot.conf new file mode 100644 index 0000000..14ce1df --- /dev/null +++ b/etc/documentroot.conf @@ -0,0 +1 @@ +DocumentRoot /opt/app-root/src/html |