中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

LNMP架構中Nginx如何配置虛擬主機

發布時間:2021-12-07 14:53:33 來源:億速云 閱讀:159 作者:小新 欄目:云計算

這篇文章給大家分享的是有關LNMP架構中Nginx如何配置虛擬主機的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

1、nginx虛擬主機簡單介紹

同apache服務一樣,它也有三種不同的虛擬主機,基于域名的虛擬主機、基于IP的虛擬主機與基于端口的虛擬主機,至于其中的區別,請參考前面的 apache服務器的虛擬主機章節的相關介紹



2、nginx虛擬主機配置環境

系統環境

[root@centos6 scripts]# cat /etc/redhat-release 

CentOS release 6.5 (Final)

[root@centos6 scripts]# uname -r

2.6.32-431.el6.x86_64

nginx服務的版本

[root@centos6 scripts]# /application/nginx/sbin/nginx -v

nginx version: nginx/1.10.1



3、nginx虛擬主機配置準備

生產環境的規范很重要,這是運維的重點,因此,配置前創建站點目錄

[root@centos6 ~]# mkdir /www/{www,bbs,blog} -p

[root@centos6 ~]# tree /www

/www

+-- bbs

+-- blog

+-- www

3 directories, 0 files

用于存放站點文件的目錄

---------------

授權目錄

--------------

[root@centos6 ~]# chown -R nginx.nginx /www

[root@centos6 ~]# ll /www/

total 12

drwxr-xr-x. 2 nginx nginx 4096 Dec  4 18:38 bbs

drwxr-xr-x. 2 nginx nginx 4096 Dec  4 18:38 blog

drwxr-xr-x. 2 nginx nginx 4096 Dec  4 18:38 www

------------------------------------------------------

接下來寫點東東進去吧,用于后面的測試

-----------------------------------------------------

[root@centos6 ~]# echo "welcont to mingongge's web stie" >/www/www/index.html

[root@centos6 ~]# echo "welcont to mingongge's bbs stie" >/www/bbs/index.html   

[root@centos6 ~]# echo "welcont to mingongge's blog stie" >/www/blog/index.html  

[root@centos6 ~]# cat /www/www/index.html 

welcont to mingongge's web stie

[root@centos6 ~]# cat /www/bbs/index.html 

welcont to mingongge's bbs stie

[root@centos6 ~]# cat /www/blog/index.html 

welcont to mingongge's blog stie

     生產環境檢查也同樣很重要,檢查、檢查 、檢查,重要的事情說三遍!!!!



4、nginx虛擬主機配置

      配置nginx 虛擬主機有兩種方式,一種可以像前面apache服務這種,單獨配置一個虛擬主機的配置文件,另一種也可以在主配置文件 nginx.conf中添加server標簽,接下來介紹的是第一種方式,通過在配置文件里添加包含關系,單獨配置虛擬主機的配置文件目錄與配置文件,這樣實際生產環境中比較常見,服務多了,也容易維護。

--------------------

配置主配置文件

-------------------

只需要在主配置文件nginx.conf最后一行加下如下配置

     include  extra/vhosts/*.conf;

-----------------------------

創建虛擬主機配置目錄

----------------------------

[root@centos6 conf]# pwd

/application/nginx/conf

[root@centos6 conf]# mkdir -p extra/vhosts

-----------------------------

創建虛擬主機配置文件

----------------------------

[root@centos6 conf]# cd extra/vhosts/

[root@centos6 vhosts]# mkdir bbs www blog

[root@centos6 vhosts]# cp ../../nginx.conf www/www.conf

[root@centos6 vhosts]# cp ../../nginx.conf bbs/bbs.conf

[root@centos6 vhosts]# cp ../../nginx.conf blog/blog.conf


通過主配置文件來修改,其實只需要里面的server標簽的內容,同樣也可以做一個模板文件出來,通過cp命令改名后,再修改其內容,效果都一樣


-----------------------------

配置虛擬主機配置文件

----------------------------


WWW站點虛擬主機配置文件(比較簡單)

server {

        listen       80;

        server_name  www.mingongge.com;

        location / {

            root   /www/www;

            index  index.html index.htm;

        }

        }           

基它的相同,只需要改下站點目錄路徑與域名信息


BBS站點虛擬主機配置文件

server {

        listen       80;

        server_name  bbs.mingongge.com;

        location / {

            root   /www/bbs;

            index  index.html index.htm;

        }

        } 


BLOG站點虛擬主機配置文件

server {

        listen       80;

        server_name  blog.mingongge.com;

        location / {

            root   /www/blog;

            index  index.html index.htm;

        }

        } 


5、重啟服務與測試訪問

[root@centos6 vhosts]# /application/nginx/sbin/nginx -t                 

nginx: the configuration file /application/nginx-1.10.1/conf/nginx.conf syntax is ok

nginx: configuration file /application/nginx-1.10.1/conf/nginx.conf test is successful

[root@centos6 vhosts]# /application/nginx/sbin/nginx -s reload

[root@centos6 vhosts]# lsof -i :80

COMMAND  PID  USER   FD   TYPE DEVICE SIZE/OFF NODE NAME

nginx   2469  root    6u  IPv4  15462      0t0  TCP *:http (LISTEN)

nginx   2519 nginx    6u  IPv4  15462      0t0  TCP *:http (LISTEN)

[root@centos6 vhosts]# ps -ef|grep nginx

root 2469 1 0 18:47 ? 00:00:00 nginx: master process /application/nginx/sbin/nginx

nginx 2519 2469  0 19:14 ?00:00:00 nginx: worker process  


打開瀏覽器測試訪問吧

本地DNS解析不要忘記了,否則無法通過域名來訪問的


LNMP架構中Nginx如何配置虛擬主機

LNMP架構中Nginx如何配置虛擬主機

LNMP架構中Nginx如何配置虛擬主機

感謝各位的閱讀!關于“LNMP架構中Nginx如何配置虛擬主機”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

门头沟区| 都江堰市| 玉树县| 梁山县| 夹江县| 开阳县| 巫溪县| 合江县| 潮安县| 闻喜县| 越西县| 当阳市| 文化| 汉寿县| 东丰县| 大姚县| 卫辉市| 贺兰县| 江山市| 油尖旺区| 龙山县| 法库县| 咸丰县| 保山市| 英吉沙县| 漳州市| 云阳县| 无极县| 阜新市| 许昌县| 怀宁县| 合肥市| 东至县| 阜阳市| 黔东| 景谷| 卓资县| 驻马店市| 醴陵市| 兴业县| 临朐县|