Nginx笔记(附conf参考模板)

ε祈祈猫儿з 提交于 2019-12-17 02:02:53

Linux下环境搭建

1,wget下载:wget http://nginx.org/download/nginx-1.6.2.tar.gz
2, 安装:tar -zxvf nginx-1.6.2.tar.gz
3, 下载需要的依赖库文件:
yum install pcre
yum install pcre-devel
yum install zlib
yum install zlib-devel
4,进行configure配置:cd nginx-1.6.2 && ./configure --prefix=/user/local/nginx
查看是否报错。(/user/local/nginx是你nginx的所在路径)
5,编译安装 make && make install
6,启动nginx
cd /user/local/nginx目录下:看到如下四个目录:conf配置文件,html网页文件,logs日志文件,sbin主要二进制程序
启动命令:/user/local/nginx/sbin/nginx关闭(-s stop)重启(-s reload)
7,成功:查看是否启动成功(netstat -ano|grep 80)失败可能是80端口被占用

虚拟主机配置讲解

虚拟主机配置文件路径为:/user/local/nginx/conf/nginx.conf

server {
#监听端口
    listen       80;
#监听域名
    server_name  localhost;
#返回的相应文件地址 /代表根路径
    location / {
#返回根路径地址(相对路径:相对于/usr/local/nginx/)
        root   html;
#默认访问文件 顺序查找,第一个没找到找第二个
        index  index.html index.htm;
    }
#错误页面及其返回地址
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   html;
    }
}

location配置

location表示url方式定位,没有对应路径的资源会报错404
1,location=pattern{}精准匹配
2,location pattern{}一般匹配

#匹配/goods开头的请求,重定向能匹配goods-(\d{1,5})\.html的请求到/goods-ctrl.html
location /goods {
	rewrite "goods-(\d{1,5})\.html" /goods-ctrl.html;
	root bhz.com;
	index index.html;
}

3,location ~ pattern{}正则匹配

#正则表达式匹配uri方式:在/usr/local/nginx/bhz.com下 建立一个test123.html 然后使用正则匹配
location ~ test {
	## 重写语法:if return (条件 = ~ ~*)
	#如果请求的客户端地址是指定地址则返回401
	if ($remote_addr = 192.168.1.200) {
	       return 401;
	}		
	#~*忽略大小写
	#请求客户端浏览器为firefox则重定向请求到html
	if ($http_user_agent ~* firefox) {
		   rewrite ^.*$ /firefox.html;
		   break;
	}			
				
	root bhz.com;
	index index.html;
}

日志文件

日志文件路径为:/user/local/nginx/logs
nginx.pid: 记录nginx启动产生的进程pid号,用于stop时kill进程
error.log: 错误日志
access.log: 访问请求日志

1, 日志配置

http {
	#日志文件输出格式 这个位置相于全局设置
    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';
	server{
	
		#nginx访问日志放在logs/host.access.log下,并且使用main格式(还可以自定义格式) 日志文件在启动时校验是否存在,不存在则新建
        access_log  logs/host.access.log  main;
    }
}

2, 日志切分
shell脚本

BASE_DIR=/usr/local/nginx
BASE_FILE_NAME=access.log	

CURPENT_PATH=$BASE_DIR/logs
BAK_PATH=$BASE_DIR/datalogs

CURPENT_FILE=$CURPENT_PATH/$BASE_FILE_NAME
BAK_TIME=/bin/data -d yesterday
BAK_FILE=$BAK_PATH/$BAK_TIME-$BASE_FILE_NAME
echo $BAK_FILE

$BAKE_DIR/sbin/nginx -s stop
mv $CURPENT_FILE $BAK_FILE
$BASE_DIR/sbin/nginx	

定时任务对脚本进行调度

crontab -e
#每分钟执行一次
*/1****sh /usr/local/nginx/sbin/log.sh

反向代理

server{
	#将实际请求的IP保存在代理请求头上
	proxy_set_header X-real-ip $remote_addr;	
	#配置反向代理tomcat服务器:拦截.jsp结尾的请求转向到tomcat
    location ~ \.jsp$ {
        proxy_pass http://192.168.1.171:8080;
    }	
}

负载均衡

server{
	#设置负载均衡服务器的列表 myapp为列表名称可以自己定义
	upstream myapp {   
		#weight表示权重,负载均衡权重策略(其他如ip hash策略可自行扩展了解)
		#max_fails表示最大失败数 fail_timeout表示最大连接时间,超过此时间连接失效
	   server 192.168.1.171:8080 weight=1 max_fails=2 fail_timeout=30s;   
	   server 192.168.1.172:8080 weight=1 max_fails=2 fail_timeout=30s;   
	}
 	location / {
           #设置客户端真实ip地址
      	proxy_set_header X-real-ip $remote_addr;		
		#负载均衡反向代理,此处使用上方定义的的负载均衡服务器列表
   		proxy_pass http://myapp;
		#返回根路径地址(相对路径:相对于/usr/local/nginx/)
        root   html;
		#默认访问文件
        index  index.html index.htm;
       }
}

文档及模板

Nginx官方文档


#user  nobody;

#开启进程数 <=CPU数 
worker_processes  1;

#错误日志保存位置
#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#进程号保存文件
#pid        logs/nginx.pid;

#每个进程最大连接数(最大连接=连接数x进程数)每个worker允许同时产生多少个链接,默认1024
events {
    worker_connections  1024;
}


http {
	#文件扩展名与文件类型映射表
    include       mime.types;
	#默认文件类型
    default_type  application/octet-stream;

	#日志文件输出格式 这个位置相于全局设置
    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

	#请求日志保存位置
    #access_log  logs/access.log  main;
	
	#打开发送文件
    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
	#连接超时时间
    keepalive_timeout  65;

	#打开gzip压缩
    #gzip  on;
	
	#设定请求缓冲
	#client_header_buffer_size 1k;
	#large_client_header_buffers 4 4k;
	
	#设定负载均衡的服务器列表
	#upstream myproject {
		#weigth参数表示权值,权值越高被分配到的几率越大
		#max_fails 当有#max_fails个请求失败,就表示后端的服务器不可用,默认为1,将其设置为0可以关闭检查
		#fail_timeout 在以后的#fail_timeout时间内nginx不会再把请求发往已检查出标记为不可用的服务器
	#}
	
    #webapp
    #upstream myapp {   
  	# server 192.168.1.171:8080 weight=1 max_fails=2 fail_timeout=30s;   
	# server 192.168.1.172:8080 weight=1 max_fails=2 fail_timeout=30s;   
    #} 

	#配置虚拟主机,基于域名、ip和端口
    server {
		#监听端口
        listen       80;
		#监听域名
        server_name  localhost;

        #charset koi8-r;
		
		#nginx访问日志放在logs/host.access.log下,并且使用main格式(还可以自定义格式)
        #access_log  logs/host.access.log  main;

		#返回的相应文件地址
        location / {
            #设置客户端真实ip地址
            #proxy_set_header X-real-ip $remote_addr;		
			#负载均衡反向代理
			#proxy_pass http://myapp;
			
			#返回根路径地址(相对路径:相对于/usr/local/nginx/)
            root   html;
			#默认访问文件
            index  index.html index.htm;
        }

		#配置反向代理tomcat服务器:拦截.jsp结尾的请求转向到tomcat
        #location ~ \.jsp$ {
        #    proxy_pass http://192.168.1.171:8080;
        #}		
		
        #error_page  404              /404.html;
        # redirect server error pages to the static page /50x.html
        #
		
		#错误页面及其返回地址
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        #location ~ \.php$ {
        #    root           html;
        #    fastcgi_pass   127.0.0.1:9000;
        #    fastcgi_index  index.php;
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
        #}

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }
	
	#虚拟主机配置:
	server {
		listen 1234;
		server_name bhz.com;
		location / {
		#正则表达式匹配uri方式:在/usr/local/nginx/bhz.com下 建立一个test123.html 然后使用正则匹配
		#location ~ test {
			## 重写语法:if return (条件 = ~ ~*)
			#if ($remote_addr = 192.168.1.200) {
			#       return 401;
			#}		
			
			#if ($http_user_agent ~* firefox) {
			#	   rewrite ^.*$ /firefox.html;
			#	   break;
			#}			
						
			root bhz.com;
			index index.html;
		}
		
		#location /goods {
		#		rewrite "goods-(\d{1,5})\.html" /goods-ctrl.html;
		#		root bhz.com;
		#		index index.html;
		#}
		
		#配置访问日志
		access_log logs/bhz.com.access.log main;
	}
	


    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}


    # HTTPS server
    #
    #server {
    #    listen       443 ssl;
    #    server_name  localhost;

    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;

    #    ssl_session_cache    shared:SSL:1m;
    #    ssl_session_timeout  5m;

    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers  on;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}

}


标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!