Nginx
NGINX is a free, open-source, high-performance HTTP server, reverse proxy, and IMAP/POP3 proxy server.
Installation of Nginx server
In order to have the latest updates, we update the the package lists before installing any package:
We then install Nginx with
To check if Nginx is properly installed and running, we can check for its process in command line
The output will be like
Configure a virtual host for the server (with domain name task.woezzon.com )
To serve our website with task.woezzon.com, we create virtual host conf file in /etc/nginx/sites-enabled/task.woezzon.com.conf
with the content
After that, we restart Nginx with
In a browser, http://task.woezzon.com will point to the default Nginx web page.
Last updated
Was this helpful?