Day-38nginx(1)

1.什么是nginx

Nginx是一款轻量级Web 服务器/反向代理服务器及电子邮件(IMAP/POP3)代理服务器,在BSD-like 协议下发行。其特点是占有内存少,并发能力强,事实上nginx的并发能力确实在同类型的网页服务器中表现较好

2.常见的web服务器

Apache、Nginx、Lighttpd、Tomcat、IBM WebSphere

https://blog.csdn.net/apeopl/article/details/80769910

3.nginx的应用场景

https://blog.csdn.net/vbirdbest/article/details/80913319

​ 1.代理
​ 2.负载均衡
​ 3.代理缓存 (proxy_cache)
​ 4.静态资源
​ 5.动静分离
​ 6.Https

4.nginx 配置文件

  • 配置文件:vim /etc/nginx/nginx.conf

    user  nginx;#进程用户身份
    worker_processes  1;#工作的进程数
    error_log  /var/log/nginx/error.log warn;#错误日志
    pid        /var/run/nginx.pid;#进程运行后产生的进程号
    events { #时间模型
        worker_connections  1024;#每个work能支持的连接数
      user epoll #使用的网络模型
    }
    http { #接受用的http请求
        include  /etc/nginx/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  /var/log/nginx/access.log  main;
        sendfile        on;
        #tcp_nopush     on;
        keepalive_timeout  65;#长连接超时时间
        #gzip  on;#启用压缩功能
    include /etc/nginx/conf.d/*.conf;#包含的文件路径
    

5.nginx服务

  • 1)安装:

    安装源:vim /etc/yum.repos.d/nginx.repo

    [nginx-stable]
    name=nginx stable repo
    baseurl=http://nginx.org/packages/centos/$releasever/$basearch/
    gpgcheck=1
    enabled=1
    gpgkey=https://nginx.org/keys/nginx_signing
    .key
    

    安装:yum install nginx -y

  • 2)配置:vim /etc/nginx/conf.d/wxb.conf

    server{
      listen 80;
      server_name wangxub.cn;
      location / {
          root /code;
          index index.html;
      }
    }
    
  • 3)启动:

    systemctl  start  nginx
    systenctl  enable nginx
    
  • PS: Nginx中的http、server、location之间的关系是?

    http       标签主要用来解决用户的请求与响应。
    server     标签主要用来响应具体的某一个网站。
    location   标签主要用于匹配网站具体url路径。
    

6.Nginx 搭建 游戏网站

  • 1)注释掉之前的默认网站

    [root@web01 html]# cd /etc/nginx/conf.d/
    [root@web01 conf.d]# gzip default.conf 
    
  • 2)编写游戏网站Nginx配置文件
    [root@web01 conf.d]# cat game.oldxu.com.conf
    server {
    listen 80; #该网站提供访问的端口
    server_name game.oldxu.com; #访问该网站的域名

    [root@web01 conf.d]# cat game.oldxu.com.conf 
    server {
      listen 80;                  #该网站提供访问的端口
      server_name game.oldxu.com; #访问该网站的域名
    location / {
      root /code;
      index index.html;
    }
    }
    
  • 3.根据Nginx的配置文件,初始化

    [root@web01 conf.d]# mkdir /code
    
  • 4.上传代码

    [root@web01 conf.d]# cd /code/
    [root@web01 code]# rz html5.zip
    [root@web01 code]# unzip html5.zip 
    
  • 5.检测语法

    [root@web01 code]# nginx -t
    nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
    nginx: configuration file /etc/nginx/nginx.conf test is successful
    
  • 6.重载服务

    [root@web01 code]# systemctl restart nginx
    
  • 7.配置域名解析

7.Nginx访问的整体流程

  • http:// game.oldxu.com / game/yibihua/index.html

    请求的uri: /game/yibihua/index.html
    真实映射位置: /code/game/yibihua/index.html

8.Nginx 搭建 多个游戏网站 ---> 虚拟主机

  • Nginx配置虚拟主机有如下三种方式:
    方式一、基于主机多IP方式 10.0.0.7 172.16.1.7
    方式二、基于端口的配置方式 80 81 82 83
    方式三、基于名称方式(多域名方式) test1 test2 test3

  • 方式一、基于主机多IP方式

    [root@web01 conf.d]# cat ip_eth0.conf 
    server {
      listen 10.0.0.7:80;
      location / {
          root /ip1;
          index index.html;
      }
    }
    server {
      listen 172.16.1.7:80;
      location / {
          root /ip2;
          index index.html;
      }
    }
    
    [root@web01 conf.d]# mkdir /ip1 /ip2
    [root@web01 conf.d]# echo "10...." > /ip1/index.html
    [root@web01 conf.d]# echo "172...." > /ip2/index.html
    [root@web01 conf.d]# systemctl restart nginx
    [root@web01 ~]# curl http://10.0.0.7
    10.... 
    [root@web01 ~]# curl http://172.16.1.7
    172....
    
  • 方式二、基于端口的配置方式 81 82 83
    公司内部有多套系统,希望部署在一台服务器上, 而内网又没有域名.
    所以,我们可以通过相同IP,不同的端口,访问不同的网站页面.
    [root@web01 conf.d]# cat port.conf
    server {
    listen 81;

[root@web01 conf.d]# cat port.conf 
server {
    listen 81;
location / {
    root /81;
    index index.html;
}
}
server {
    listen 82;
    location / {
    root /82;
    index index.html;
}
}
server {
    listen 83;
    location / {
    root /83;
    index index.html;
}
}

[root@web01 conf.d]# mkdir /81 /82 /83
[root@web01 conf.d]# echo "81" > /81/index.html
[root@web01 conf.d]# echo "82" > /82/index.html
[root@web01 conf.d]# echo "83" > /83/index.html

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 211,376评论 6 491
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,126评论 2 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 156,966评论 0 347
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,432评论 1 283
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,519评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,792评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,933评论 3 406
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,701评论 0 266
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,143评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,488评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,626评论 1 340
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,292评论 4 329
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,896评论 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,742评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,977评论 1 265
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,324评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,494评论 2 348

推荐阅读更多精彩内容