设为首页 收藏本站
查看: 2094|回复: 0

[经验分享] Nginx网站服务器搭建实例

[复制链接]
累计签到:1 天
连续签到:1 天
发表于 2014-8-6 08:52:15 | 显示全部楼层 |阅读模式
Nginx是一款开源的高性能HTTP服务器和返向代理服务器。

下载、编译、安装模块:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[iyunv@localhost nginx-1.4.0]#wget http://nginx.org/download/nginx-1.4.0.tar.gz
[iyunv@localhost nginx-1.4.0]#tar -xzf nginx-1.4.0.tar.gz -C /usr/src/
[iyunv@localhost nginx-1.4.0]#yum -y install gcc pcre pcre-devel gcc openssl \
>openssl-devel gd gd-devel perl perl-ExtUtils-Embed
[iyunv@localhost nginx-1.4.0]#cd /usr/src/nginx-1.4.0/
[iyunv@localhost nginx-1.4.0]# ./configure --prefix=/usr/local/nginx \
> --with-ipv6 \
> --with-http_ssl_module \
> --with-http_realip_module \
> --with-http_addition_module \
> --with-http_dav_module \
> --with-http_flv_module \
> --with-http_mp4_module \
> --with-http_gzip_static_module \
> --with-http_perl_module \
> --with-mail \
> --with-mail_ssl_module
[iyunv@localhost nginx-1.4.0]#make && make install




各模块介绍(码字太多,百度求解吧):

服务器被安装到/usr/local/nginx/目录下

Nginx常用 管理命令:
1
2
3
4
5
[iyunv@localhost nginx]# /usr/local/nginx/sbin/nginx #启动主程序
[iyunv@daqijiance xyz]# /usr/local/nginx/sbin/nginx -c \
>/usr/local/nginx/conf/nginx.conf#指定配置文件启动主程序
[iyunv@localhost nginx]# /usr/local/nginx/sbin/nginx -s stop#关闭主程序
[iyunv@localhost nginx]# /usr/local/nginx/sbin/nginx -s reload#重新加载设置




配置文件解析:
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
[iyunv@daqijiance nginx]# cat conf/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;
}
  
  
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()进行数据复制,sendfile()复制数据是在内核级别完成的,所以会比一般的read、write更高效
sendfile        on;
#开启后的服务器的响应头部信息产生独立的数据包发送,即一个响应头一个包
    tcp_nopush     on;
  
#保持连接的超时时间
    keepalive_timeout  65;
  
#是否启用压缩功能,将页面压缩后传输更节省流量
    gzip  on;
  
#使用server定义虚拟主机
server {
#服务器监听的端口
        listen       80;
#访问域名
        server_name  daqijiance.com *.daqijiance.com;
#编码格式,如果网页编码于此设置不同,则将被自动转码
        #charset koi8-r;
#设置虚拟主机的访问日志
        access_log  logs/daqijiance.com..log  main;
#对url进行匹配
        location / {
#设置网页的根路径,使用的是相对路径,html指的是处于Nginx安装路径下
            root   html/daqijiance;
#首页文件,先找index.html,若没有,再找index.htm
            index  index.html index.htm index.aspx;
        }
  
        #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;
        }
    }
  
  
    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    server {
        listen       80;
        server_name  hbgk.com *.hbgk.com hebeigankong.com *.hebeigankong.com;
     
        location / {
            root   html/hebeigankong;
            index  index.html index.htm index.aspx;
        }
    }
  
    server {
        listen       80;
        server_name  yiyuanjiance.com *.yiyuanjiance.com;
  
        location / {
            root html/yiyuanjiance/;
            index index.html index.htm index.aspx;
        }
    }
  
  
    # HTTPS server
     
    server {
        listen       443;
        server_name  hbu.cn hbu.edu.cn *.hbu.cn *.hbu.edu.cn;
  
        ssl                  on;
        ssl_certificate      cert.pem;
        ssl_certificate_key  cert.key;
  
        ssl_session_timeout  5m;
  
        ssl_protocols  SSLv2 SSLv3 TLSv1;
        ssl_ciphers  HIGH:!aNULL:!MD5;
        ssl_prefer_server_ciphers   on;
  
        location / {
            root   html/hbu;
            index  index.html index.htm index.aspx;
        }
    }
  
}
  
[iyunv@localhost nginx]# mkdir /usr/local/nginx/html/{daqijiance,hebeigankong,yiyuanjiance}
[iyunv@localhost nginx]# echo "daqijiance.com" > /usr/local/nginx/html/daqijiance/index.html
[iyunv@localhost nginx]# echo "hebeigankong.com" > /usr/local/nginx/html/hebeigankong/index.html
[iyunv@localhost nginx]# echo "yiyuanjiance.com" > /usr/local/nginx/html/yiyuanjiance/index.html




上面这个实例可以根据来路域名跳转到不同的网站页面,也就是多个网站绑定到了同一个IP,Nginx web服务器监听80端口实现对不同来访域名的解析,返回不同网站首页。
其实这个测试一般通过修改DNS域名解析,如果没有DNS域名解析,也可以通过修改hosts文件的方式实现。
1
2
3
4
[iyunv@daqijiance xyz]# cat /etc/hosts
127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4
::1         localhost localhost.localdomain localhost6 localhost6.localdomain6
192.168.50.157 www.daqijiance.com www.hebeigankong.com www.yiyuanjiance.com daqijiance.com hebeigankong.com yiyuanjiance.com hbgk.com hbu.cn hbu.edu.cn www.hbu.cn www.hbu.edu.cn

QQ截图20140806084937.jpg


运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-23279-1-1.html 上篇帖子: nginx + php 的配置 下篇帖子: linux下nginx实现虚拟主机(3种方法:基于域名、基于端口、基于ip地址) 网站服务器
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表