nginx服务器的安装和配置
来源:岁月联盟
时间:2012-06-26
2)在linux下的安装 tar zxvf pcre-8.21.tar.gz(安装nginx必需) ./configure www.2cto.com make make install cp /usr/local/lib/libpcre.so.1 /usr/lib tar zxvf nginx..../tar.gz cd nginx... ./configure make make install 2.nginx的启动
linux下命令:/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
(-c是指定配置文件的意思) 3.nginx的停止 ps -ef |grep nginx 找到master process的id kill -QUIT nginx的id 快速停止 kill -TERM nginx的id 强制关闭nginx的所有进程 pkill -9 nginx 4.nginx的重启 1)检查配置文件是否正确 /usr/local/nginx/sbin/nginx -t -c /usr/local/nginx/conf/nginx.conf 2)平滑重启 kill -HUP Nginx主进程号 如果配置文件不正确,nginx将仍旧使用修改前的配置文件 www.2cto.com nginx基本配置 通过配置文件示例可知,nginx.conf配置文件结构主要构成: .... events { ... } http { .... server { ... } server { ... } ... } 虚拟主机配置 #server { # listen 8000; # server_name localhost; # server_name somename alias another.alias; # location / { # root html; # index index.html index.htm; # } www.2cto.com #} #server { # listen 8080; # server_name localhost; # server_name somename alias another.alias; # location / { # root html; # index index.html index.htm; # } #} 作者 陈建虹