Skip to content
Snippets Groups Projects
Commit e86ea159 authored by nimrod's avatar nimrod
Browse files

Apache improvements.

- Add status module.
- Set work dir to the user's home dir.
- Patch configuration instead of using sed.
- Test the Apache configuration during build.
parent e090ee1b
No related branches found
No related tags found
No related merge requests found
*
!cgitrc
!patch.diff
......@@ -5,13 +5,14 @@ RUN apt-get update && \
apache2 \
cgit \
groff-base \
patch \
python3-docutils \
python3-markdown \
python3-pygments \
&& \
a2enmod cgid && \
a2enconf cgit && \
sed -i 's/80/8080/g' /etc/apache2/ports.conf /etc/apache2/sites-enabled/000-default.conf && \
a2enmod status && \
install -d -o www-data -g www-data -m 755 /var/cache/cgit && \
install -d -o www-data -g www-data -m 755 /run/apache2 && \
install -d -o www-data -g www-data -m 755 /var/log/apache2 && \
......@@ -19,14 +20,18 @@ RUN apt-get update && \
ln -sf /dev/stderr /var/log/apache2/error.log && \
ln -sf /dev/stdout /var/log/apache2/other_vhosts_access.log && \
rm -rf /tmp/* /var/tmp/* /var/lib/apt/lists/* /var/cache/apt/archives/*
COPY --chown=root:root patch.diff /root/
COPY --chown=root:root cgitrc /etc/
ENV APACHE_RUN_DIR=/run/apache2 \
APACHE_LOG_DIR=/var/log/apache2 \
APACHE_RUN_USER=www-data \
APACHE_RUN_GROUP=www-data \
APACHE_PID_FILE=/run/apache2/apache2.pid
RUN patch --strip 0 --verbose --directory /etc/apache2 --input /root/patch.diff && \
apache2 -t
EXPOSE 8080
CMD [ "apache2", "-DFOREGROUND" ]
VOLUME ["/srv/git"]
USER "www-data"
WORKDIR /var/www
HEALTHCHECK CMD wget --spider --quiet http://localhost:8080/cgit/ --user-agent 'Healthcheck' || exit 1
--- ports.conf 2019-11-09 19:58:29.052813201 +0200
+++ ports.conf 2019-11-02 14:40:08.000000000 +0200
@@ -2,7 +2,7 @@
# have to change the VirtualHost statement in
# /etc/apache2/sites-enabled/000-default.conf
-Listen 80
+Listen 8080
<IfModule ssl_module>
Listen 443
--- sites-available/000-default.conf 2019-04-03 00:13:44.000000000 +0300
+++ sites-available/000-default.conf 2019-11-09 20:00:01.459226750 +0200
@@ -1,4 +1,4 @@
-<VirtualHost *:80>
+<VirtualHost *:8080>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
--- mods-available/status.conf 2019-04-03 00:13:44.000000000 +0300
+++ mods-available/status.conf 2019-11-09 19:59:09.642896703 +0200
@@ -5,7 +5,7 @@
<Location /server-status>
SetHandler server-status
- Require local
+ #Require local
#Require ip 192.0.2.0/24
</Location>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment