diff --git a/doc_docker.md b/doc_docker.md index 85541a7..a11a8ed 100755 --- a/doc_docker.md +++ b/doc_docker.md @@ -139,3 +139,10 @@ This command starts LibreSpeed in frontend mode, with a given `servers.json` fil ``` docker run -e MODE=frontend -e TELEMETRY=true -e ENABLE_ID_OBFUSCATION=true -e PASSWORD="yourPasswordHere" -v $(pwd)/servers.json:/servers.json -p 80:80 -it ghcr.io/librespeed/speedtest ``` + +### Dual mode +In dual mode, LibreSpeed operates as a standalone server that can also connect to other test points. +To do this: +* Set the `MODE` environment variable to `dual` +* Follow the `servers.json` instructions for the frontend mode +* The first server entry should be the local server, using the server endpoint address that a client can access. \ No newline at end of file diff --git a/docker/entrypoint.sh b/docker/entrypoint.sh index 659cb2b..6717429 100755 --- a/docker/entrypoint.sh +++ b/docker/entrypoint.sh @@ -13,7 +13,7 @@ cp /speedtest/*.js /var/www/html/ cp /speedtest/favicon.ico /var/www/html/ # Set up backend side for standlone modes -if [ "$MODE" == "standalone" ]; then +if [[ "$MODE" == "standalone" || "$MODE" == "dual" ]]; then cp -r /speedtest/backend/ /var/www/html/backend if [ ! -z "$IPINFO_APIKEY" ]; then sed -i s/\$IPINFO_APIKEY\ =\ \'\'/\$IPINFO_APIKEY\ =\ \'$IPINFO_APIKEY\'/g /var/www/html/backend/getIP_ipInfo_apikey.php @@ -28,14 +28,14 @@ if [ "$MODE" == "backend" ]; then fi # Set up index.php for frontend-only or standalone modes -if [ "$MODE" == "frontend" ]; then +if [[ "$MODE" == "frontend" || "$MODE" == "dual" ]]; then cp /speedtest/frontend.php /var/www/html/index.php elif [ "$MODE" == "standalone" ]; then cp /speedtest/standalone.php /var/www/html/index.php fi # Apply Telemetry settings when running in standalone or frontend mode and telemetry is enabled -if [[ "$TELEMETRY" == "true" && ( "$MODE" == "frontend" || "$MODE" == "standalone" ) ]]; then +if [[ "$TELEMETRY" == "true" && ( "$MODE" == "frontend" || "$MODE" == "standalone" || "$MODE" == "dual" ) ]]; then cp -r /speedtest/results /var/www/html/results if [ "$MODE" == "frontend" ]; then