๐๐ข๐๐ซ๐๐๐ฉ๐๐๐ - ๐ ๐ซ๐๐ ๐๐ง๐ ๐๐ฉ๐๐ง๐ฌ๐จ๐ฎ๐ซ๐๐ ๐๐ฉ๐๐๐๐ญ๐๐ฌ๐ญ
First, we will install apache web server and php with below command. root@ubuntu: ~# apt install apache2 php -y After that we will download LibreSpeed Package via GitHub. In order to download, we must have ‘git’ command to type. If there was not, please install by typing “ apt install git -y ”. GitHub Link - https://github.com/librespeed/speedtest.git root@ubuntu: ~# git clone https://github.com/librespeed/speedtest.git After downloaded, go to speedtest directory and copy the mentioned files in command to /var/www/html/ root@ubuntu: ~/speedtest# cp -R backend example-singleServer-pretty.html *.js /var/www/html/ Then go to /var/www/html and change example-singleServer-pretty.html to index.html. root@ubuntu:/var/www/html# mv example-singleServer-pretty.html index.html Then change the ownership to www-data from root. The command means that Apache can access that directory. root@ubuntu:/var/www/html# chown -R www-data * In this stage, we can call it from Web Browser. ...