yum -y install wgetwget http://nginx.org/download/nginx-1.12.1.tar.gz -P /usr/local/src/tar xzf /usr
yum -y install wgetwget http://nginx.org/download/nginx-1.12.1.tar.gz -P /usr/local/src/tar xzf /usr/local/src/nginx-1.12.1.tar.gz -C /tmp/cd /tmp/nginx-1.12.1/yum -y install gcc make pcre-devel zlib-devel./configuremakemake installecho 'export PATH=$PATH:/usr/local/nginx/sbin' >> /etc/profile
日常管理:
# 启动nginx# 重新加载配置文件nginx -s reload# 停止pkill nginx
示例配置文件:
worker_processes 1;events { worker_connections 1024;}http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; server { listen 80; server_name localhost; location / { root html; index index.php index.html index.htm; } location ~ /.php$ { root html; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } }}