LINUX Configure virtual hostings with Nginx

1 Add a section for new domain like follows.
The example of new domain below is "virtual.host", replace it to your own domain name. 
[root@www ~]#vi /etc/nginx/conf.d/virtual.conf
# add at the last line
server {
    listen       80;
    server_name  www.virtual.host;

    location / {
        root   /usr/share/nginx/virtual.host;
        index  index.html index.htm;
    }
}

[root@www ~]#mkdir /usr/share/nginx/virtual.host
[root@www ~]#/etc/rc.d/init.d/nginx restart

Stopping nginx: [ OK ]
Starting nginx: [ OK ]
2 Create a HTML test page and make sure it works or not. It's OK if the following page is shown. 
[root@www ~]#vi /usr/share/nginx/virtual.host/index.html
<html>
<body>
<div style="width: 100%; font-size: 40px; font-weight: bold; text-align: center;">
Nginx Virtual Host Test Page
</div>
</body>
</html>
3. Open web browser with www.virtual.host to run  

Comments

Popular posts from this blog

LINUX Move and copy files using SSH

PHP Predefined Variables

Java : Variables Declaring