您好,登錄后才能下訂單哦!
這篇文章主要講解了“Linux中如何安裝與配置Nginx”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“Linux中如何安裝與配置Nginx”吧!
本教程一Centos 6.3為例講解,軟件包可以在官方網(wǎng)站下載,編譯安裝之前,我們需要使用YUM提前將所需的軟件依賴包安裝完成。
安裝命令如下:
[root@centos6 ~]# wget http://nginx.org/download/nginx-1.4.0.tar.gz[root@centos6 ~]# tar -xzf nginx-1.4.0.tar.gz -C /usr/src[root@centos6 ~]# yum -y install gcc pcre pcre-devel openssl \>openssl-devel gd gd-devel perl perl-ExtUtils-Embed [root@centos6 ~]# cd /usr/src/nginx-1.4.0/[root@centos6 nginx-1.4.0]# ./configure --prefix=/usr/local/nginx \>--with-ipv6 \ >--with-http_ssl_module \ >--with-http_realip_module \ >--with-http_addition_module \ >--with-http_dav_module \ >--with-http_flv_module \ >--with-http_mp4_module \ >--with-http_gzip_static_module \ >--with-http_perl_module \ >--with-mail \ >--with_main_ssl_module [root@centos6 nginx-1.4.0]# make && make install
Nginx Web服務(wù)器軟件安裝完成后,程序主目錄位于/usr/local/nginx/,該目錄下的內(nèi)容分別為cong、html、logs、sbin。下面是Nginx常用的進(jìn)程管理指令:
[root@centos6 ~]# /usr/local/nginx/sbin/nginx #啟動主程序[root@centos6 ~]# /usr/local/nginx/sbin/nginx -c \ #指定配置文件啟動主程序[root@centos6 ~]# /usr/local/nginx/sbin/nginx -s stop #關(guān)閉主程序[root@centos6 ~]# /usr/local/nginx/sbin/nginx -s reload #重新加載設(shè)置
Nginx默認(rèn)的配置文件為/usr/local/nginx/conf/nginx.conf,配置文件包括全局、event、http、server設(shè)置,event主要用來定義Nginx工作模式,http提供Web功能,server用來設(shè)置虛擬主機(jī),server必須位于http內(nèi)部,一個配置文件中可以有多個server。
感謝各位的閱讀,以上就是“Linux中如何安裝與配置Nginx”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對Linux中如何安裝與配置Nginx這一問題有了更深刻的體會,具體使用情況還需要大家實(shí)踐驗證。這里是億速云,小編將為大家推送更多相關(guān)知識點(diǎn)的文章,歡迎關(guān)注!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。