Skip to content

Commit

Permalink
Merge pull request #31 from Zebradil/master
Browse files Browse the repository at this point in the history
Fix init of static files
  • Loading branch information
aptalca authored Mar 28, 2024
2 parents feb99a2 + 0efc70c commit d51b332
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions root/etc/s6-overlay/s6-rc.d/init-librespeed-config/run
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ mkdir -p \

# create symlink to index.html
if [[ ! -L /app/www/public/index.html ]]; then
ln -s /config/www/index.html /app/www/public/index.html
ln -sf /config/www/index.html /app/www/public/index.html
fi

# update templates
cp /app/www/public/example*.html /config/www/
cp /app/www/public/examples/example*.html /config/www/

# use custom js files if exist
if [[ -f /config/www/speedtest.js ]]; then
Expand Down

0 comments on commit d51b332

Please sign in to comment.