您好,登錄后才能下訂單哦!
這篇文章主要講解了“Linux中如何安裝與配置Nginx”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“Linux中如何安裝與配置Nginx”吧!
本教程一Centos 6.3為例講解,軟件包可以在官方網站下載,編譯安裝之前,我們需要使用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服務器軟件安裝完成后,程序主目錄位于/usr/local/nginx/,該目錄下的內容分別為cong、html、logs、sbin。下面是Nginx常用的進程管理指令:
[root@centos6 ~]# /usr/local/nginx/sbin/nginx #啟動主程序[root@centos6 ~]# /usr/local/nginx/sbin/nginx -c \ #指定配置文件啟動主程序[root@centos6 ~]# /usr/local/nginx/sbin/nginx -s stop #關閉主程序[root@centos6 ~]# /usr/local/nginx/sbin/nginx -s reload #重新加載設置
Nginx默認的配置文件為/usr/local/nginx/conf/nginx.conf,配置文件包括全局、event、http、server設置,event主要用來定義Nginx工作模式,http提供Web功能,server用來設置虛擬主機,server必須位于http內部,一個配置文件中可以有多個server。
感謝各位的閱讀,以上就是“Linux中如何安裝與配置Nginx”的內容了,經過本文的學習后,相信大家對Linux中如何安裝與配置Nginx這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。