Nginx
NGINX is a free, open-source, high-performance HTTP server, reverse proxy, and IMAP/POP3 proxy server.
Installation of Nginx server
$ sudo apt-get update$ sudo apt-get install nginx$ ps -aux | grep nginxroot 22078 0.0 0.1 180536 1476 ? Ss Nov23 0:00 nginx: master process /usr/sbin/nginx -g daemon on; master_process on;
www-data 22086 0.0 0.4 181468 4100 ? S Nov23 0:00 nginx: worker process
ubuntu 31904 0.0 0.0 12944 908 pts/0 S+ 00:51 0:00 grep --color=auto nginx
Configure a virtual host for the server (with domain name task.woezzon.com )
$ cd /etc/nginx/sites-enabled/
$ sudo nano task.woezzon.com.conf Last updated
Was this helpful?