在這裡對nginx的安裝簡單的做個記錄,後續有時間的話在詳細補充。 1.yum安裝gcc gcc-c++: 2.下載必需的依賴庫:zlib 、openssl 、pcre 3.安裝依賴庫:zlib 、openssl 、pcre 4.修改配置: 添加以下內容,註意位置: 5.測試配置問是否正確: 出現以 ...
在這裡對nginx的安裝簡單的做個記錄,後續有時間的話在詳細補充。
1.yum安裝gcc gcc-c++:
yum install -y gcc gcc-c++ [enter]
2.下載必需的依賴庫:zlib 、openssl 、pcre
wget http://nginx.org/download/nginx-1.11.13.tar.gz [enter] wget https://www.openssl.org/source/openssl-1.1.0e.tar.gz [enter] wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre2-10.21.tar.gz [enter] wget http://www.zlib.net/zlib-1.2.11.tar.gz [enter]
3.安裝依賴庫:zlib 、openssl 、pcre
tar xvf nginx-1.11.13.tar.gz [enter] tar xvf openssl-1.1.0e.tar.gz [enter] tar xvf pcre2-10.21.tar.gz [enter] tar xvf zlib-1.2.11.tar.gz [enter] cd ./nginx-1.11.13 [enter] ./configure --prefix=/usr/local/nginx --with-pcre=../pcre2-10.21 --with-openssl=../openssl-1.1.0e --with-zlib=../zlib-1.2.11 [enter] make [enter] make install [enter] 註意:--with選項均指向源碼路徑。
4.修改配置:
vi /usr/local/nginx/conf/nginx.conf [enter]
添加以下內容,註意位置:
upstream test { server 127.0.0.1:18087; server 127.0.0.1:28087; } server { listen 80; server_name localhost; charset utf-8; location /test { root html; index index.html index.htm; proxy_pass http://test; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; } }
5.測試配置問是否正確:
/usr/local/nginx/sbin/nginx -t [enter]
出現以下信息為正確:
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
6.啟動 :
啟動: /usr/local/nginx/sbin/nginx [enter] 重啟: /usr/local/nginx/sbin/nginx -s reload [enter]
7.訪問:
安裝成功!
先記錄到這裡,後續再進行詳細補充^_^~