当前位置:首页 > linux教程 > 列表

Linux系统下安装配置Nginx环境整理

发布:smiling 来源: PHP粉丝网  添加日期:2015-05-05 15:47:00 浏览: 评论:0 

安装Nginx是做WEB服务器的一个选项之一了,如果网站静态多我们多半使用nginx否则会选择apache了,下面我们不说远了就来看看Linux系统下安装配置Nginx环境整理吧.

PHP的这些环境在linux下也折腾过很多次了,每次重装都要重新去找这些文档,记性不好,还是自己整理下吧.

Nginx安装:

  1. # yum -y install gcc* pcre glib2-devel openssl-devel pcre-devel bzip2-devel gzip-devel lrzsz 
  2.  
  3. # groupadd www && useradd www -g www 
  4.  
  5. # wget http://nginx.org/download/nginx-1.6.1.tar.gz 
  6.  
  7. # tar zxvf nginx-1.6.1.tar.gz 
  8.  
  9. # cd nginx-1.6.1 
  10.  
  11. # ./configure --user=www --group=www --prefix=/usr/local/webserver/nginx --with-http_stub_status_module --with-http_ssl_module --error-log-path=/data/logs/nginx/error.log --http-log-path=/data/logs/nginx/access.log 
  12.  
  13. # make && make install 

机器为阿里云512MCentOS,刚初始化的机器发现没有make命令,通过yum安装即可.

# yum -y install make

常用操作:

  1. -- root软连接到nginx.conf 
  2. # ln -s /usr/local/webserver/nginx/conf/nginx.conf /root/nginx.conf 
  3.    
  4. -- root目录下直接重启脚本 
  5. # echo -e  '#!/bin/bash \n /usr/local/webserver/nginx/sbin/nginx -s reload ' >> /root/nginx_restart.sh 
  6.    
  7. -- 添加执行权限 
  8. # chmod +x /root/nginx_restart.sh 
  9.    
  10. -- 添加到自启动 
  11. # echo '/usr/local/webserver/nginx/sbin/nginx' >>/etc/rc.local 

启动Nginx:

  1. # /usr/local/webserver/nginx/sbin/nginx 
  2.    
  3. -- 检测是否配置文件是否正确 
  4. # /usr/local/webserver/nginx/sbin/nginx -t 
  5.    
  6. -- 重启nginx 
  7. # /usr/local/webserver/nginx/sbin/nginx -s reload 
  8. nginx.conf 

配置示例,通过vhost来配置新站点,避免nginx.conf文件过长,不方便管理.

  1. # more /root/nginx.conf  
  2.  
  3. user  www www; 
  4.  
  5. worker_processes  1; 
  6.  
  7.    
  8.  
  9. error_log  logs/error.log; 
  10.  
  11. pid        logs/nginx.pid; 
  12.  
  13.    
  14.  
  15. events { 
  16.  
  17.     use epoll; 
  18.  
  19.     worker_connections  1024; 
  20.  
  21.  
  22.    
  23.  
  24. http { 
  25.  
  26.     <a href="/tags.php/include/" target="_blank">include</a>       mime.types; 
  27.  
  28.     default_type  application/octet-stream; 
  29.  
  30.    
  31.  
  32.     server_names_hash_bucket_size 128; 
  33.  
  34.     client_header_buffer_size 32k; 
  35.  
  36.     large_client_header_buffers 4 32k; 
  37.  
  38.     client_max_body_size 50m; 
  39.  
  40.    
  41.  
  42.     log_format  main  '$remote_addr - $remote_user [$time_local] "$<a href="/tags.php/request/" target="_blank">request</a>" ' 
  43.  
  44.                       '$status $body_bytes_sent "$http_referer" ' 
  45.  
  46.                       '"$http_user_agent" "$http_x_forwarded_for"'; 
  47.  
  48.     sendfile        on; 
  49.  
  50.     tcp_nopush     on; 
  51.  
  52.    
  53.  
  54.     keepalive_timeout  60; 
  55.  
  56.     tcp_nodelay on; 
  57.  
  58.    
  59.  
  60.     fastcgi_connect_timeout 300; 
  61.  
  62.     fastcgi_send_timeout 300; 
  63.  
  64.     fastcgi_read_timeout 300; 
  65.  
  66.     fastcgi_buffer_size 64k; 
  67.  
  68.     fastcgi_buffers 4 64k; 
  69.  
  70.     fastcgi_busy_buffers_size 128k; 
  71.  
  72.     fastcgi_temp_file_write_size 128k; 
  73.  
  74.    
  75.  
  76.     gzip  on; 
  77.  
  78.     gzip_min_length  1k; 
  79.  
  80.     gzip_buffers     4 16k; 
  81.  
  82.     gzip_http_version 1.0; 
  83.  
  84.     gzip_comp_level 2; 
  85.  
  86.     gzip_types       text/plain application/x-<a href="/js_a/js.html" target="_blank">javascript</a> text/css application/xml; 
  87.  
  88.     gzip_vary on; 
  89.  
  90.    
  91.  
  92.     include vhost/*.conf; 
  93.  

添加80端口:

  1. server { 
  2.  
  3.     listen 80; 
  4.  
  5.     server_name localhost; 
  6.  
  7.     index index.htm index.html index.php; 
  8.      --phpfensi.com 
  9.    
  10.  
  11.     root /data/www; 
  12.  
  13.     access_log /data/logs/nginx/default.access.log; 
  14.  
  15. }

Tags: 配置Nginx Linux环境

分享到: