aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorBernhard Großer <bernhard.grosser@gmail.com>2021-06-21 19:33:21 +0200
committerBastien Wirtz <bastien.wirtz@gmail.com>2022-04-30 10:46:00 +0200
commitcaf5fae8a849f740a603e0377be75df2043fae7f (patch)
tree57083f39951294a93219b5ad253b596f365101c6
parentaf0a6e89c9104ed69766e41f032a4b610ef67ccd (diff)
downloadhomer-caf5fae8a849f740a603e0377be75df2043fae7f.tar.gz
homer-caf5fae8a849f740a603e0377be75df2043fae7f.tar.zst
homer-caf5fae8a849f740a603e0377be75df2043fae7f.zip
Added feature for subfolder hosting
By setting the SUBFOLDER env var, you can host Homer in a subfolder behind a reverse proxy.
-rw-r--r--README.md4
-rw-r--r--entrypoint.sh6
2 files changed, 10 insertions, 0 deletions
diff --git a/README.md b/README.md
index 5ea80fb..57185a7 100644
--- a/README.md
+++ b/README.md
@@ -83,6 +83,10 @@ docker run -d \
83 83
84Default assets will be automatically installed in the `/www/assets` directory. Use `UID` and/or `GID` env var to change the assets owner (`docker run -e "UID=1000" -e "GID=1000" [...]`). 84Default assets will be automatically installed in the `/www/assets` directory. Use `UID` and/or `GID` env var to change the assets owner (`docker run -e "UID=1000" -e "GID=1000" [...]`).
85 85
86## Host in subfolder
87
88If you would like to host Homer in a subfolder, for e.g. behind a reverse proxy, supply the name of subfolder by using the `SUBFOLDER` env var.
89
86### Using docker-compose 90### Using docker-compose
87 91
88The `docker-compose.yml` file must be edited to match your needs. 92The `docker-compose.yml` file must be edited to match your needs.
diff --git a/entrypoint.sh b/entrypoint.sh
index f1a8c22..9da2615 100644
--- a/entrypoint.sh
+++ b/entrypoint.sh
@@ -11,5 +11,11 @@ fi
11# Install default config if no one is available. 11# Install default config if no one is available.
12yes n | cp -i /www/default-assets/config.yml.dist /www/assets/config.yml &> /dev/null 12yes n | cp -i /www/default-assets/config.yml.dist /www/assets/config.yml &> /dev/null
13 13
14# Create symbolic link for hosting in subfolder.
15if [[ -n "${SUBFOLDER}" ]]; then
16 ln -s /www "/www/$SUBFOLDER"
17 chown -h $USER:$GROUP "/www/$SUBFOLDER"
18fi
19
14chown -R $UID:$GID /www/assets 20chown -R $UID:$GID /www/assets
15exec su-exec $UID:$GID darkhttpd /www/ --no-listing --port "$PORT" 21exec su-exec $UID:$GID darkhttpd /www/ --no-listing --port "$PORT"