Webserver - colibri-imx6 Linux Configuration

Hi

I have been following the steps in the Toradex webnair (part 1).
Webinar On-Demand: Part 1 Introduction - Building Embedded Linux Images with the Yocto Project

My host machine is ubuntu 14.04 (64).

I am able to run the following command successfully (no errors).

bitbake -k angstrom-lxde-image

I would like to build an image that contains nginx webserver.
I have added the line below to my local.conf file.

IMAGE_INSTALL += “nginx”

But my build fails after adding that line to the local.conf file.

ERROR: Nothing RPROVIDES ‘nginx’

Any support or suggestion would be appreciated.
Thanks

nginx is provided by the meta-webserver layer which is not included by default in the bblayers configuration file.

Add the following to build/conf/bblayers.conf in BASELAYERS.

${TOPDIR}/../stuff/meta-openembedded/meta-webserver \

nginx should then be available for build.