下載安裝包 && 安裝 依賴包
# wget http://nginx.org/download/nginx-1.14.2.tar.gz
# yum install pcre-devel gcc-c++ openssl-devel libxslt-devel wget
解壓嗤攻,編譯安裝
# tar xf nginx-1.14.2.tar.gz
# cd nginx-1.14.2/
# ./configure --prefix=/usr/local/nginx --without-select_module --without-poll_module --with-debug --with-http_ssl_module --with-http_realip_module --with-http_addition_module --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_xslt_module --with-http_gzip_static_module --with-http_random_index_module --with-http_secure_link_module --with-http_stub_status_module --with-cc=`which gcc`
# make && make install
修改配置文件
# vim /usr/local/nginx/conf/nginx.conf.default
# egrep -v "^$| *#" /usr/local/nginx/conf/nginx.conf.default
...
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
listen 80;
server_name localhost;
root /var/zabbix/php;
location / {
root /var/zabbix/php;
index index.html index.php index.htm;
}
location ~\.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
...
}
# cd /usr/local/nginx/
起服務(wù)
# sbin/nginx -c conf/nginx.conf.default
安裝 php
# yum install php php-fpm php-mysql php-devel php-mbstring php-pecl php-xmlrpc php-snmp php-bcmath php-xml php-gd php-ldap -y
/etc/php.ini 添加如下
# vim /etc/php.ini
post_max_size =16M
max_execution_time =300
max_input_time =300
date.timezone = PRC
--------------------
起服務(wù)
# systemctl start php-fpm zabbix_server zabbix_agentd
Nginx安裝配置
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
- 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來捅位,“玉大人轧葛,你說我怎么就攤上這事⊥Р螅” “怎么了尿扯?”我有些...
- 文/不壞的土叔 我叫張陵,是天一觀的道長焰雕。 經(jīng)常有香客問我衷笋,道長,這世上最難降的妖魔是什么矩屁? 我笑而不...
- 正文 為了忘掉前任辟宗,我火速辦了婚禮,結(jié)果婚禮上吝秕,老公的妹妹穿的比我還像新娘泊脐。我一直安慰自己,他們只是感情好烁峭,可當(dāng)我...
- 文/花漫 我一把揭開白布容客。 她就那樣靜靜地躺著,像睡著了一般约郁。 火紅的嫁衣襯著肌膚如雪缩挑。 梳的紋絲不亂的頭發(fā)上,一...
- 文/蒼蘭香墨 我猛地睜開眼娄柳,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了艘绍?” 一聲冷哼從身側(cè)響起赤拒,我...
- 正文 年R本政府宣布,位于F島的核電站诸老,受9級特大地震影響隆夯,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜别伏,卻給世界環(huán)境...
- 文/蒙蒙 一蹄衷、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧畸肆,春花似錦宦芦、人聲如沸。這莊子的主人今日做“春日...
- 文/蒼蘭香墨 我抬頭看了看天上的太陽抡砂。三九已至大咱,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間注益,已是汗流浹背碴巾。 一陣腳步聲響...
推薦閱讀更多精彩內(nèi)容
- 下載地址 http://nginx.org/en/download.htmlMainline version 主線...
- 下載地址 http://nginx.org/en/download.htmlMainline version 主線...
- 本文是基于centos 7 安裝配置的 環(huán)境初始化 配置網(wǎng)絡(luò) 虛擬機網(wǎng)絡(luò)配置可以參考 基于 Ubuntu16.0...
- Nginx 配置 一 安裝配置 1. 按照nginx 安裝配置說明進行配置 二 安裝完成測試 如果沒出現(xiàn)這樣的界...