Since the TFTP server cannot serve large file, a HTTP server has to be configured to serve /var/www/netboot. This can be done using nginx and adding the following code in the default nginx website /etc/nginx/sites-available/default:
location /netboot {
alias /var/www/netboot;
}