I have setup my LEMP stack and nowhere was VHOST mentioned. But I see it referred to in places, vaguely, ‘update your VHOST file’ such as in q/a of https://www.digitalocean.com/community/tutorials/how-to-set-up-wordpress-multisite-with-nginx-on-ubuntu-14-04 but nowhere was it mentioned - have I missed something?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
I can see how this could be confusing. When the person commenting referred to a VHOST file they were referring to the configuration file you set up in
/etc/nginx/sites-enabled/
For a little background, VHOST is short for VirtualHost. This term is used by the Apache webserver with
<VirtualHost>
being a section in the configuration file. On nginx this is done with “server blocks” that start withserver {
.In both cases the configuration uses the name requested to know which site is being asked for instead of each site having it’s own IP address. Each of these sites may be called “Name-based virtual hosts” or VHOSTs for short.
Thanks thats a bit clearer now.