[root@node4 nginx-1.18.0]# ./configure --prefix=/usr/local/nginx
nginx常用指令:
[root@node4 nginx]# /usr/local/nginx/sbin/nginx -? nginx version: nginx/1.18.0
usage: nginx [-?hvvttq] [-s signal] [-c filename] [-p
prefix] [-g directives]
options:
-?,-h : this help
-v : show version and exit
-v : show version and configure options then
exit
-t : test configuration and exit
-t : test configuration, dump it and exit
-q : suppress non-error messages during
configuration testing
配置檔案。
-s signal : send signal to a master process: stop,
quit, reopen, reload
-p prefix : set prefix path (default:
/usr/local/nginx/)
-c filename : set configuration file (default:
conf/nginx.conf)
-g directives : set global directives out of
configuration file
4. 配置nginx虛擬主機:
配置虛擬主機常見方式: 基於多網域名稱配置虛擬主機; 基於多埠配置虛擬主機; 基於多ip配置虛擬主機;
…keepalive_timeout 65;
include vhost/*.conf;
server
}vim /usr/local/nginx/conf/vhost/blog.jfedu.net.conf
server
}echo 「this is blog page」 > /usr/local/nginx/html/blog/index.html
/etc/hosts
[root@node4 conf]# curl www.jfedu.net
this is www page
[root@node4 conf]# curl blog.jfedu.net
this is blog page
2012雲計算架構師峰會小記
有幸拿到票,參與本周四到周五舉行的 2012雲架構師峰會 這次峰會由51cto主辦,位於北京工人體院館。很早的時候就已經有很多人了,這次貌似 1000多個座位,9點的時候全坐滿了。我來的還算早,8點左右,那會已經坐了一半人了。看來大家對它關注度都很高。上圖是 51cto執行主編,算是見到真人了。工作...
計算高可用架構
計算高可用的本質是通過冗餘來規避部分硬體故障的風險,所以計算高可用的設計思想很簡單,通過增加更多的伺服器來達到計算高可用。計算高可用架構設計的複雜度主要體現在任務管理方面,計算高可用架構設計的關鍵點有如下兩點,第一哪些伺服器可以執行任務,第二任務如何重新執行。常見的架構模式主要有主備,主從,對稱集群...
亞馬遜架構師 私有雲計算有沒有前途
james hamilton 是亞馬遜的架構師,非常聰明的乙個人。他在最近的一篇部落格中說,他認為私有雲計算沒什麼前途。原因是,私有雲計算沒辦法達到公共雲計算帶來的規模效應。基於web的公共雲計算在以下這幾個方面確實有它獨特的優勢 服務質量。提供大規模公共雲服務的公司可以請到業界的專家來優化服務和基...