Install Speedtest Server Ookla di Ubuntu 18.04

Install Speedtest Server:


wget https://install.speedtest.net/ooklaserver/ooklaserver.sh
chmod a+x ooklaserver.sh
./ooklaserver.sh install


Managing the daemon:


./ooklaserver.sh start
./ooklaserver.sh restart
./ooklaserver.sh stop


Autorun startup:


crontab -e
@reboot su root -c '/root/OoklaServer --daemon'


Install certbot:


apt-get install certbot
certbot certonly --standalone --preferred-challenges http -d subdomain.example.com


verifikasi autorenew certbot:


systemctl status certbot.timer
certbot renew --dry-run


Optimasi Speedtest server Ookla:


nano OoklaServer.properties
OoklaServer.allowedDomains = *.example.com
openSSL.server.certificateFile = /etc/letsencrypt/live/subdomain.example.com/fullchain.pem
openSSL.server.privateKeyFile = /etc/letsencrypt/live/subdomain.example.com/privkey.pem


info Tambahan:


untuk menggunakan SSL secara otomatis, tidak manual seperti diatas, bisa baca tutorial link dibawah ini, dengan syarat server kita sudah diapprove oleh ookla.

Sumber referensi