From 289da45ebc33779ccadf010f9472b6708f8811d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Van=C3=AD=C4=8Dek?= Date: Sun, 5 Feb 2023 22:55:07 +0100 Subject: [PATCH] Expose it on port 80. --- Dockerfile | 2 +- files/lighttpd.conf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7004bb4..e9ce9f1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -65,7 +65,7 @@ COPY files/supervisord.conf /etc/supervisord.conf RUN chmod +x /entrypoint.sh -EXPOSE 8080 +EXPOSE 80 WORKDIR /home/backuppc diff --git a/files/lighttpd.conf b/files/lighttpd.conf index 2415db5..977a68e 100644 --- a/files/lighttpd.conf +++ b/files/lighttpd.conf @@ -1,4 +1,4 @@ -server.port = 8080 +server.port = 80 server.username = env.BACKUPPC_USERNAME server.groupname = env.BACKUPPC_GROUPNAME server.document-root = "/srv/http"