-
Notifications
You must be signed in to change notification settings - Fork 4
/
10-配置Nginx服务器.txt
executable file
·1706 lines (1081 loc) · 46.5 KB
/
10-配置Nginx服务器.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
第10章 配置Nginx服务器
10.1 Nginx简介
Nginx是一款由俄罗斯程序员Igor Sysoev开发的轻量级网页服务器、反向代理服务器以及电子邮件
(POP3/IMAP)代理服务器。Nginx是一个安装非常简单,配置文件非常简介(还能够支持per语法)Bugs非常
少的服务器。
Nginx相对于Apache、lighttpd具有占用内存少, 稳定性高等有点,并且依靠并发能力强、丰富的模块库
以及友好灵活的配置而闻名。
Nginx能够支持高达5万个并发连接数的响应,在高连接并发的情况下,Nginx是Apache服务器不错的替代品。
Nginx有效的高并发支持和高效的负载均衡是选择它理由。
Nginx作为负载均衡服务器,既可以在内部直接支持Rails和PHP程序对外进行服务,也可以支持作为HTTP代理
服务器对外进行服务。Nginx采用C编写。开销比Perlbal要好很多。
10.2 Nginx服务器安装和配置
10.2.1 源码编译安装nginx软件
下载网址:http://nginx.org/
下载:nginx-1.6.3.tar.gz (最新版本:1.9.1)
1.安装pcre
-->rpm -qa|grep pcre
pcre-static-7.8-6.el6.x86_64
pcre-7.8-6.el6.x86_64
pcre-devel-7.8-6.el6.x86_64
-->yum install pcre-* openssl-* -y
2.创建用户nginx
-->useradd nginx
-->passwd nginx
3.安装nginx软件
-->tar -zxf nginx-1.6.3.tar.gz
-->cd nginx-1.6.3
-->./configure \
--user=nginx \
--group=nginx \
--prefix=/usr/local/nginx-1.4.4 \
--sbin-path=/usr/sbin/nginx \
--conf-path=/etc/nginx/nginx.conf \
--error-log-path=/var/log/nginx/error.log \
--http-log-path=/var/log/nginx/access.log \
--http-client-body-temp-path=/tmp/nginx/client_body \
--http-proxy-temp-path=/tmp/nginx/proxy \
--http-fastcgi-temp-path=/tmp/nginx/fastcgi \
--pid-path=/var/run/nginx.pid \
--lock-path=/var/lock/subsys/nginx \
--with-http_stub_status_module \
--with-http_ssl_module \
--with-http_gzip_static_module
修改为一个包中配置文件:
-->./configure \
--user=nginx \
--group=nginx \
--prefix=/usr/local/nginx-1.4.4 \
--sbin-path=/usr/local/nginx-1.4.4/sbin/nginx \
--conf-path=/usr/local/nginx-1.4.4/nginx/nginx.conf \
--error-log-path=/var/log/nginx/error.log \
--http-log-path=/var/log/nginx/access.log \
--http-client-body-temp-path=/tmp/nginx/client_body \
--http-proxy-temp-path=/tmp/nginx/proxy \
--http-fastcgi-temp-path=/tmp/nginx/fastcgi \
--pid-path=/var/run/nginx.pid \
--lock-path=/var/lock/subsys/nginx \
--with-http_stub_status_module \
--with-http_ssl_module \
--with-http_gzip_static_module
-->make
-->make install
。安装第三方模块
-->./configure \
--user=nginx \
--group=nginx \
--prefix=/usr/local/nginx-1.4.4 \
--sbin-path=/usr/sbin/nginx \
--conf-path=/etc/nginx/nginx.conf \
--error-log-path=/var/log/nginx/error.log \
--http-log-path=/var/log/nginx/access.log \
--http-client-body-temp-path=/tmp/nginx/client_body \
--http-proxy-temp-path=/tmp/nginx/proxy \
--http-fastcgi-temp-path=/tmp/nginx/fastcgi \
--pid-path=/var/run/nginx.pid \
--lock-path=/var/lock/subsys/nginx \
--with-http_stub_status_module \
--with-http_ssl_module \
--with-http_gzip_static_module \
--add-module=../ngx_cache_purge-2.1
# ./configure --prefix=/usr/local/nginx-1.4.1 \
--with-http_stub_status_module \
--with-http_ssl_module --with-http_realip_module \
--with-http_image_filter_module \
--add-module=../ngx_cache_purge-2.1
# make
# /usr/local/nginx-1.4.1/sbin/nginx -s stop
# cp objs/nginx /usr/local/nginx/sbin/nginx
# /usr/local/nginx-1.4.1/sbin/nginx
。查看安装的模块
-->nginx -V
10.2.2 /etc/nginx/nginx.conf文件详解
配置文件主要由4部分组成:
。main(全局设置):设置的参数将影响其他所有设置。
。server(主机设置):主要用户指定主机和端口。
。upstream(负载均衡服务器设置):主要用于负载均衡,设置一系列的后端服务器。
。location(URL匹配特定位置的设置):用于匹配网页位置。
4者之间的关系:
server 继承main, location 继承server, upstream 既不会继承其它设置页不会被继承。
在4个部分当中,每个部分都包含若干参数,这些参数主要包含nginx的主模块指令、事件模块指令、
HTTP核心模块指令,同时每个部分还可以使用其它HTTP模块指令。
-->more /etc/nginx/nginx.conf
//第一部分:参数设置:
#user nobody;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
//设置连接数最大值
events {
worker_connections 1024;
}
第二部分:Web服务器设置
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 on;
//设置HTTP服务器
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
//默认请求
location / {
root html;
index index.html index.htm;
}
//设置虚拟主机的错误信息返回页面
#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
//代理PHP脚本到Apache侦听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
//PHP脚本请求全部转发到FastCGI处理,使用FastCGI默认配置
#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
//禁止访问.htaccess文件
#location ~ /\.ht {
# deny all;
#}
}
//配置虚拟主机 (通过IP地址、名称、端口方式)
# 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服务器
# 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;
# }
#}
在/etc/nginx/nginx.conf文件中可以添加和修改的主要参数:
。 user nobody: #设置nginx运行用户和组群
。user epoll; #使用网络I/O模型,linux系统建议使用epoll
。worker_processes 1; #设置nginx启动进程数量,通常设置成和CPU的数量一样
。include mime.types; #设定mime类型,类型由mime.type文件定义。
。error_log log/error.log notice; #设置nginx全局错误日志文件。日志文件类型可以是debug、info、notice、
warn、error或crit
。pid logs/nginx.pid; #设置nginx的PID文件
。worker_connections 1024; #单个后台工作进程的最大并发连接数
。include mime.types; #设置文件扩展名与文件类型映射表
。default_type application/octet-stream; #设置默认文件类型。
。gzip on; #设置是否开启gzip压缩
。keepalive_timeout 65 #设置客户端连接保持活动的超时时间。在超过这个时间之后,服务器会关闭该连接。
。access_log logs/access.log main; #设置访问nginx日志文件
。tcp_nopush on; #告诉nginx在一个数据包里发送所有头文件,而不一个接一个地发送。
。sendfile on; #开启高效文件传输模式,指定nginx是否调用sendfile函数来输出文件,对于普通应用
必须设置为on。 如果是用来进行下载等磁盘I/O重负载应用,可以设置为off以平衡磁盘
与网络I/O处理速度,降低系统负载。
。client_max_body_size 10m; #允许客户端请求的最大文件容量。
。client_body_buffer_size 128K; #缓冲区代理缓冲用户端请求的最大字节数
。listen 80; #设置nginx服器监听的端口:
。server_name localhost; #设置绑定的主机名、域名或IP地址
。charset koi8-r; #设置字符编码
。access_log logs/host.access.log main; #设置虚拟主机访问日志文件
。root html; #设置nginx服务器默认网站的根目录位置
。index index.html index.htm #设置首页索引文件的名称
。error_page 404 #设置虚拟主机的错误信息返回页面。特别注意,错误信息返回页面大小一定要超过512KB,
否则会被浏览器替换为默认的错误页面。
。ssl_certificate cert.pem; #指定SSL证书
。ssl_certficate_key cert.key; #指定SSL证书密钥
10.2.3 Nginx服务器配置实例
在公司内部配置一台Nginx服器,为公司网络内的客户端计算机提供Web服务,具体参数如下:
。Nginx服务器监听端口:80
。nginx运行用户:nginx
。nginx运行组群:nginx
。服务器主机名:Master1
。定义首页索引文件的名称:index.html和idnex.htm
。连接超时时间:65秒
。启动进程数量:8个
。全局错误日志文件:/var/log/nginx/error.log
。访问日志文件:/var/log/nginx/access.log
。Nginx服务器的PID文件:/var/run/nginx.pid
。默认网站的根目录位置: /var/www/nginx
。单个后台工作进程进程的最大并发连接数:204800
。Web网站字符编码:utf-8
1.创建/var/www/nginx目录
-->mkdir /var/www/nginx
-->echo This is www.fulong.com > /var/www/nginx/index.html
2.编辑/etc/nginx/nginx.conf文件
-->vim /etc/nginx/nginx.conf
user nginx nginx;
worker_processes 8;
error_log /var/log/nginx/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
pid /var/run/nginx.pid;
events {
worker_connections 204800;
}
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 65;
server {
listen 80;
server_name Master1; #Master1为主机名
charset utf-8;
location / {
root /var/www/nginx;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
文件中未指出的部分均默认
。创建相关文件和目录
-->mkdir /tmp/nginx
-->touch /tmp/nginx/client_body
-->mkdir /opt/nginx/logs #mkdir /usr/local/nginx-1.2.6/logs
-->touch /opt/nginx/logs/access.log #touch /usr/local/nginx-1.2.6/logs/access.log
-->touch /var/www/nginx/favicon.ico #
-->touch /var/www/nginx/favicon.ico
3.测试nginx配置文件
使用nginx -t命令测试nginx配置文件是否设置正确。
-->nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
-------------------------------------------------------------------------------------------------
如果报错:
nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: [emerg] getpwnam("nginx") failed
nginx: configuration file /etc/nginx/nginx.conf test failed
解决方法1:
在nginx.conf中 把user nobody的注释去掉既可
解决方法2:
错误的原因是没有创建www这个用户,应该在服务器系统中添加www用户组和用户www,如下命令:
#/usr/sbin/groupadd -f www
#/usr/sbin/useradd -g www www
-------------------------------------------------------------------------------------------------
4.启动nginx服务
-->nginx
5.查看nginx进程是否存在
-->ps -ef |grep nginx
root 8112 1 0 14:54 ? 00:00:00 nginx: master process nginx
nginx 8113 8112 5 14:54 ? 00:00:00 nginx: worker process
nginx 8114 8112 3 14:54 ? 00:00:00 nginx: worker process
nginx 8115 8112 2 14:54 ? 00:00:00 nginx: worker process
nginx 8116 8112 7 14:54 ? 00:00:00 nginx: worker process
nginx 8117 8112 2 14:54 ? 00:00:00 nginx: worker process
nginx 8118 8112 7 14:54 ? 00:00:00 nginx: worker process
nginx 8119 8112 2 14:54 ? 00:00:00 nginx: worker process
nginx 8120 8112 2 14:54 ? 00:00:00 nginx: worker process
root 8122 3588 0 14:54 pts/2 00:00:00 grep nginx
6.查看端口号
-->netstat -antu|grep 80
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN
tcp 0 0 192.168.0.203:3306 192.168.0.204:53807 ESTABLISHED
tcp 1 0 192.168.0.203:40367 124.40.53.10:80 CLOSE_WAIT
tcp 0 0 ::ffff:127.0.0.1:8005 :::* LISTEN
7.访问Nginx网站
-->http://192.168.0.203/
输出:This is www.fulong.com
10.2.4 控制Nginx服务器
命令语法:
nginx [选项]
nginx命令选项含义
-------------------------------------------------------------------------------------
选项 选项含义
-------------------------------------------------------------------------------------
-p <前缀> 设置前缀路径,默认为/opt/nginx
-------------------------------------------------------------------------------------
-c <文件名> 设置配置文件,默认为/etc/nginx/nginx.conf
-------------------------------------------------------------------------------------
-v 显示版本信息并退出
-------------------------------------------------------------------------------------
-t 测试配置并退出
-------------------------------------------------------------------------------------
-q 配置测试过程中抑制非错误信息
--------------------------------------------------------------------------------------
-s <信号> 将stop、quit、reopen、reload信号发送到nginx主进程。
--------------------------------------------------------------------------------------
例10.1 启动nginx服务
-->nginx
例10.2 停止nginx服务
-->nginx -s stop
例10.3 退出nginx
-->nginx -s quit
例10.4 重新打开nginx
-->nginx -s reopen
例10.5 重新加载nginx服务配置
-->nginx -s reload
例10.6 显示nginx版本信息和配置选项
-->nginx -V
nginx version: nginx/1.6.3
built by gcc 4.4.7 20120313 (Red Hat 4.4.7-11) (GCC)
TLS SNI support enabled
configure arguments: --user=nginx --group=nginx --prefix=/opt/nginx --sbin-path=/usr/sbin/nginx
--conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log
--http-log-path=/var/log/nginx/access.log --http-client-body-temp-path=/tmp/nginx/client_body
--http-proxy-temp-path=/tmp/nginx/proxy --http-fastcgi-temp-path=/tmp/nginx/fastcgi
--pid-path=/var/run/nginx.pid --lock-path=/var/lock/subsys/nginx --with-http_stub_status_module
--with-http_ssl_module --with-http_gzip_static_module
10.2.5 Nginx日志文件
在/etc/nginx/nginx.conf文件中,与nginx服务器日志有关的参数主要有log_format和access_log
1. log_format
-->/etc/nginx/nginx.conf中,默认有如下内容:
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
log_format语法格式:
log_format 格式名称 格式样式
nginx日志变量
-----------------------------------------------------------------------------------------
变量 描述
-----------------------------------------------------------------------------------------
$remote_addr和$http_x_forwarded_for 用来记录客户端的IP地址
-----------------------------------------------------------------------------------------
$remote_user 用来记录客户端用户名称
-----------------------------------------------------------------------------------------
$time_local 用来记录访问时间与时区
-----------------------------------------------------------------------------------------
$request 用来记录请求的URL和HTTP协议
-----------------------------------------------------------------------------------------
$status 用来记录请求状态,成功是200
------------------------------------------------------------------------------------------
$body_bytes_sent 记录发送给客户端文件主机内容大小
------------------------------------------------------------------------------------------
$http_referer 用来记录从哪个页面链接访问过来的
------------------------------------------------------------------------------------------
$http_user_agent 记录客户端浏览器的相关信息
------------------------------------------------------------------------------------------
示例: log_format logformat '$http_x_forwarded_for-$remote_user[$time_local]'
'"$request" '$status $body_bytes_send'
'"$http_referer" "$http_user_agent"';
2. access_log
在/etc/nginx/nginx.conf文件中默认有以下内容,使用access_log指定nginx日志文件的存储路径和日志格式
access_log logs/access.log main;
在定义日志文件的存储路径的目录(logs目录)时,nginx进程设置的用户和组群必须有对该路径创建文件的权限。
access_log语法格式:
access_log 存储路径 格式名称
实例:
access_log /var/log/nginx/access.log main; #修改为
如果不想启用nginx日志,使用以下内容
access_log off;
-->cd /var/log
-->chown -R nginx:nginx nginx/
-->touch /var/log/nginx/access.log
3. 查看nginx日志文件
-->cat access.log
192.168.0.27 - - [15/Jun/2015:15:58:02 +0800] "GET / HTTP/1.1" 200 23 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)" "-"
192.168.0.27 - - [15/Jun/2015:15:58:03 +0800] "GET /favicon.ico HTTP/1.1" 404 570 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)" "-"
Nginx日志描述
-----------------------------------------------------------------------------------------------
输出信息 信息描述
-----------------------------------------------------------------------------------------------
192.168.0.27 客户端的IP地址
-----------------------------------------------------------------------------------------------
- 客户端用户名称, "_"表示没有取得信息
------------------------------------------------------------------------------------------------
[15/Jun/2015:15:58:02 +0800] 访问时间与时区
------------------------------------------------------------------------------------------------
"GET / HTTP/1.1" 请求的URL和HTTP协议
------------------------------------------------------------------------------------------------
200 请求状态
------------------------------------------------------------------------------------------------
23 发送给客户端主体文件内容大小
------------------------------------------------------------------------------------------------
"_" 从哪个页面链接访问过来的,"_"表示没有取得信息
------------------------------------------------------------------------------------------------
"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; 客户端浏览器信息。
------------------------------------------------------------------------------------------------
10.3 实现nginx服务开机自动启动
10.3.1 创建/etc/rc.d/init.d/nginx文件
-->vim /etc/rc.d/init.d/nginx (此脚本有问题)
#!/bin/bash
#nginx Start up the Nginx server dademon
#chkconfig: 2345 85 15
#processname: nginx
nginxd=/usr/sbin/nginx
nginx_config=/etc/nginx/nginx.conf
nginx_pid=/var/run/nginx.pid
RETVAL=0
prog="nginx"
# Source function library.
./etc/rc.d/init.d/functions
# Source networking configuration
./etc/sysconfig/network
#Check that networking is up.
[ ${NETWORKING} ="no" ] && exit 0
[ -x $nginxd ] || exit 0
# Start nginx daemons functions.
start() {
if [ -e $nginx_pid];then
echo "nginx already running..."
exit 1
fi
echo -n $ "Starting $prog:"
daemon $nginxd -c ${nginx_config}
RETVAL=$?
echo
[ $RETVAL = 0] && touch /var/lock/subsys/nginx
return $RETVAL
}
# Stop nginx daemons functions.
stop {
echo -n $"Stopping $prog:"
kill proc $nginxd
RETVAL=$?
echo
[ $RETVAL = 0 ] && rm -f /var/lock/subsys/nginx /var/run/nginx.pid
}
reload() {
echo -n $"Reloading $prog:"
#kill -HUP `cat ${nginx_pid}`
killproc $nginxd -HUP
RETVAL=$?
echo
}
#See how we were called.
case "$1" in
start)
start
;;
stop)
stop
;;
reload)
reload
;;
restart)
stop
start
;;
status)
status $prog
RETVAL=$?
;;
*)
echo $" Usage:$prog {start|stop|restart|reload|status|help}"
exit 1
esac
exit $RETVAL
。为脚本赋执行权限
-->chmod u+x /etc/rc.d/init.d/nginx
或下面这个脚本:
-->vim /etc/rc.d/init.d/nginx
#!/bin/bash
# nginx Startup script for the Nginx HTTP Server
# it is v.0.0.2 version.
# chkconfig: - 85 15
# description: Nginx is a high-performance web and proxy server.
# It has a lot of features, but it's not for everyone.
# processname: nginx
# pid /usr/local/server/nginx/nginx.pid;
# config: /usr/local/nginx/conf/nginx.conf
nginxd=/usr/local/server/nginx/sbin/nginx
nginx_config=/usr/local/server/nginx/conf/nginx.conf
nginx_pid=/usr/local/server/nginx/nginx.pid
RETVAL=0
prog="nginx"
# Source function library.
. /etc/rc.d/init.d/functions
# Source networking configuration.
. /etc/sysconfig/network
# Check that networking is up.
[ ${NETWORKING} = "no" ] && exit 0
[ -x $nginxd ] || exit 0
# Start nginx daemons functions.
start() {
if [ -e $nginx_pid ];then
echo "nginx already running...."
exit 1
fi
echo -n $"Starting $prog: "
daemon $nginxd -c ${nginx_config}
RETVAL=$?
echo
[ $RETVAL = 0 ] && touch /var/lock/subsys/nginx
return $RETVAL
}
# Stop nginx daemons functions.
stop() {
echo -n $"Stopping $prog: "
killproc $nginxd
RETVAL=$?
echo
[ $RETVAL = 0 ] && rm -f /var/lock/subsys/nginx /var/run/nginx.pid
}
# reload nginx service functions.
reload() {
echo -n $"Reloading $prog: "
#kill -HUP `cat ${nginx_pid}`
killproc $nginxd -HUP
RETVAL=$?
echo
}
# See how we were called.
case "$1" in
start)
start
;;
stop)
stop
;;
reload)
reload
;;
restart)
stop
start
;;
status)
status $prog
RETVAL=$?
;;
*)
echo $"Usage: $prog {start|stop|restart|reload|status|help}"
exit 1
esac
exit $RETVAL
-->chmod u+x /etc/rc.d/init.d/nginx
-->chkconfig --add nginx
-->chkconfig --level 35 nginx on
10.3.2 控制nginx服务
1.启动nginx服务
-->service nginx start
2.查看nginx服务运行状态
-->service nginx status
3.停止nginx
-->service nginx stop
4.重新启动nginx
-->service nginx restart
5.重新加载nginx服务
-->service nginx reload
6.添加nginx服务
-->chkconfig --add nginx
7.开机自动启动nginx服务
-->chkconfig nginx on
-->chkconfig --list|grep nginx
nginx 0:关闭 1:关闭 2:启用 3:启用 4:启用 5:启用 6:关闭
10.4 Nginx高级配置
10.4.1 虚拟目录
在Nginx服务器中,默认指定的网站根目录是/var/www/nginx,如果存储在其他目录,
可以通过别名方式创建迅目录。
虚拟目录和文件物理位置
-----------------------------------------------------------------------
物理位置 别名 URL
------------------------------------------------------------------------
/var/www/nginx 主目录 http://www.fulong.com
------------------------------------------------------------------------
/var/xuni xuni http://www.fulong.com/xuni
--------------------------------------------------------------------------
1. 创建虚拟目录
-->mkdir /var/xuni
-->echo This is /var/xuni Directory > /var/xuni/index.html
2.编辑/etc/nginx/nginx.conf文件
实现虚拟目录有两种方法,人选一种来配置
(1)第一种方法:使用alias
-->vim /etc/nginx/nginx.conf
在server{}部分添加以下内容:
location /xuni {
alias /var/xuni;
index index.html;
}
(2)第二种方法:使用root
在server{}部分添加以下内容:
location /xuni {
root /var;
index index.html;
}
3.重新启动nginx服务
-->nginx -s stop
-->nginx
4.访问虚拟目录
-->http://192.168.0.203/xuni/
输出:This is /var/xuni Directory
10.4.2 Nginx启用gzip压缩
使用Nginx的gzip_static模块将启用gzip压缩,支持在线实时压缩输出数据流。
1.查看是否安装gzip_static模块
-->nginx -V
nginx version: nginx/1.6.3
built by gcc 4.4.7 20120313 (Red Hat 4.4.7-11) (GCC)
TLS SNI support enabled
configure arguments: --user=nginx --group=nginx --prefix=/opt/nginx
--sbin-path=/usr/sbin/nginx --conf-path=/etc/nginx/nginx.conf
--error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log
--http-client-body-temp-path=/tmp/nginx/client_body --http-proxy-temp-path=/tmp/nginx/proxy
--http-fastcgi-temp-path=/tmp/nginx/fastcgi --pid-path=/var/run/nginx.pid
--lock-path=/var/lock/subsys/nginx --with-http_stub_status_module --with-http_ssl_module
--with-http_gzip_static_module
从输出看到最后有:--with-http_gzip_static_module ,说明已经安装了。
2.编辑/etc/nginx/nginx.conf文件
-->vim /etc/nginx/nginx.conf
在http{}部分添加以下内容: