#yum安裝nginx
sudo yum install -y nginx
#啟動nginx
sudo systemctl start nginx.service
#設定開機自啟動
sudo systemctl enable nginx.service
#yum安裝的nginx配置檔案預設存放在 /etc/nginx/nginx.conf 檢視
vi /etc/nginx/nginx.conf
#解除安裝
yum remove nginx
6.make install
首先要安裝docker,如何安裝docker可看centos安裝docker 和ubuntu安裝docker
拉取nginx映象
docker pull nginx 預設laster版本
檢視本地映象
docker images
建立臨時容器
docker run --name nginx-sever -p 80:80 -d nginx
啟動nginx
docker start nginx-server
建立本地目錄使用者改在nginx容器內的檔案
mkdir -p /opt/nginx/www /opt/nginx/logs /opt/nginx/conf
複製容器的配置檔案到本地
docker cp nginx-server:/etc/nginx/nginx.conf /opt/nginx/conf
清除臨時容器
docker stop nginx-server
docker rm nginx-server
建立掛載資料的正式nginx容器
docker run -d -p 80:80 --name nginx-server-v /opt/nginx/www:/usr/share/nginx/html -v /opt/nginx/conf/nginx.conf:/etc/nginx/nginx.conf -v /opt/nginx/logs:/var/log/nginx nginx
nginx快取cache的幾種方式
nginx快取cache的幾種方式 官方詳細引數 1 傳統快取之一 404 這個辦法是把nginx的404錯誤定向到後端,然後用proxy store把後端返回的頁面儲存。location location fetch 使用的時候還有要注意是nginx要有許可權往 home tmp和 home ht...
Nginx負載均衡的幾種方式
重點說一下ip hash 和加權 nginx為後端web伺服器 apache,nginx,tomcat,weblogic 等做反向 幾台後端web伺服器需要考慮檔案共享,資料庫共享,session共享問題.檔案共享可以使用nfs,共享儲存 fc,ip儲存都行 redhat gfs集群檔案系 統,rs...
nginx快取cache的幾種方式
官方詳細引數 1 傳統快取之一 404 這個辦法是把nginx的404錯誤定向到後端,然後用proxy store把後端返回的頁面儲存。location location fetch 使用的時候還有要注意是nginx要有許可權往 home tmp和 home html下有寫入檔案的許可權,在linu...