mirror of
https://github.com/librespeed/speedtest.git
synced 2024-05-10 18:54:52 +00:00
Merge pull request #540 from JoKneeMo/master
Some checks failed
Docker / build (push) Has been cancelled
Some checks failed
Docker / build (push) Has been cancelled
Add dual mode to enable standalone operation with other test servers
This commit is contained in:
@ -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.
|
@ -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
|
||||
|
Reference in New Issue
Block a user