• Nginx简单使用


    安装龙蜥操作系统

    镜像文件在这里下载就行 下载之后新建虚拟机 ISO选择刚才下载文件即可
    具体配置可以照我来 也可自定义
    在这里插入图片描述

    基本工具安装

    安装一下最基本的网络工具

    yum install net-tools openssh-server wget tar make vim -y
    
    • 1

    测试一下ssh连接 方便后期操作
    [图片]在这里插入图片描述

    修改主机名

    [root@localhost ~]# hostnamectl set-hostname Anneliese   #Anneliese为你想要改成的主机名
    [root@localhost ~]# bash
    [root@Anneliese ~]#   
    
    • 1
    • 2
    • 3

    查看系统版本

    lsb_release -a
    
    • 1

    在这里插入图片描述

    Nginx依赖安装

    1.先安装gcc-c++编译器

    yum install gcc-c++ -y
    yum install -y openssl openssl-devel
    
    • 1
    • 2

    2.再安装pcre包

    yum install -y pcre pcre-devel
    
    • 1

    3.再安装zlib包

    yum install -y zlib zlib-devel
    
    • 1

    在这里插入图片描述

    Nginx安装

    创建目录

    在/usr/local/下创建文件nginx文件

    mkdir /usr/local/nginx
    cd  /usr/local/nginx
    
    • 1
    • 2

    下载资源

    在网上下nginx包上传至Linux 点这里选择一个版本下载

    wget https://nginx.org/download/nginx-1.23.2.tar.gz
    
    • 1

    解压

    解压并进入nginx目录

    tar -zxvf nginx-1.23.2.tar.gz
    cd nginx-1.23.2
    
    • 1
    • 2

    配置

    使用nginx默认配置

    ./configure
    
    • 1

    在这里插入图片描述

    安装

    编译安装

    make
    make install
    
    • 1
    • 2

    查看安装路径

    查找安装路径

    whereis nginx
    
    • 1

    运行nginx

    进入sbin目录,可以看到有一个可执行文件nginx,直接./nginx执行就OK了。

    cd /usr/local/nginx/sbin
    ./nginx   #重启命令
    
    • 1
    • 2

    关闭nginx

    ./nginx -s quit  或者 ./nginx -s stop 
    
    • 1

    重载nginx

    ./nginx -s reload
    
    • 1

    查看是否启动成功

    ps -ef | grep nginx
    
    • 1

    访问页面

    然后在网页上访问自己的IP就可以了默认端口为80(出现如下欢迎界面就成功了!)
    在这里插入图片描述

    设置开启自启动

    vim /etc/rc.local
    
    #最底部增加这一行
    /usr/local/nginx/sbin/nginx
    
    • 1
    • 2
    • 3
    • 4

    在这里插入图片描述

    防火墙配置

    查看http服务是否开启

    firewall-cmd --query-service http    #返回yes或者no
    
    • 1

    在这里插入图片描述

    永久开放http服务

    firewall-cmd --add-service=http --permanent
    
    • 1

    在这里插入图片描述

    重启防火墙

    firewall-cmd --reload
    
    • 1

    在这里插入图片描述

    验证是否生效

    这里每个人ip地址不一样注意
    在这里插入图片描述

    虚拟站点的配置(基于不同端口号)

    新建两个页面

    填写自己想要的信息
    在目录 /usr/local/nginx/html 创建两个html文件
    在这里插入图片描述

    第一个页面

    填写一下内容 当然也是要根据自己想填的信息来写

    <!DOCTYPE html>
    <html>
    <head>
    <title>Welcome to nginx!</title>
    <style>
    html { color-scheme: light dark; }
    body { width: 35em; margin: 0 auto;
    font-family: Tahoma, Verdana, Arial, sans-serif; }
    </style>
    </head>
    <body>
    <h1>Hello, xueyue. Thank you for seeing this.</h1>
    </body>
    </html>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14

    在这里插入图片描述

    第二个页面

    <!DOCTYPE html>
    <html>
    <head>
    <title>Welcome to nginx!</title>
    <style>
    html { color-scheme: light dark; }
    body { width: 35em; margin: 0 auto;
    font-family: Tahoma, Verdana, Arial, sans-serif; }
    </style>
    </head>
    <body>
    <h1>Hello, xueyue. Your student number is 2020101934. I miss you.</h1>
    </body>
    </html>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14

    在这里插入图片描述

    更改配置文件监听地址

    vim /usr/local/nginx/conf/nginx.conf   #vim使用不熟练也可以用 ftp进行更改
    
    • 1

    然后在合适的位置添加下面内容 内容里面的 index需要改成自己网页名称

    server {
            listen       8080;
            server_name  Student;
            location / {
                root   html;
                index  xueyue.html xueyue.htm;
            }
            error_page   500 502 503 504  /50x.html;
            location = /50x.html {
                root   xueyue.html;
            }
    }
    
    server {
            listen       9090;
            server_name  Student_Number;
            location / {
                root   html;
                index  Melanie.html Melanie.htm;
            }
            error_page   500 502 503 504  /50x.html;
            location = /50x.html {
                root   html;
            }
    }
    
    • 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

    下面是我的配置文件 可以参考

    
    
    #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        on;
        #tcp_nopush     on;
    
        #keepalive_timeout  0;
        keepalive_timeout  65;
    
        #gzip  on;
    
        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
            #
            #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       9090;
            server_name  localhost;
            location / {
                root   html;
                index  Melanie.html Melanie.htm;
            }
            error_page   500 502 503 504  /50x.html;
            location = /50x.html {
                root   html;
            }
    }
    
    server {
            listen       8080;
            server_name  localhost;
            location / {
                root   html;
                index  xueyue.html xueyue.htm;
            }
            error_page   500 502 503 504  /50x.html;
            location = /50x.html {
                root   html;
            }
    }
    
    
    
        # 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;
        #    }
        #}
    
    }
    
    • 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

    重载nginx

    ./nginx -s reload
    
    • 1

    防火墙开放端口号

    sudo firewall-cmd --add-port=8080/tcp --permanent
    sudo firewall-cmd --add-port=9090/tcp --permanent
    
    • 1
    • 2

    在这里插入图片描述

    重启防火墙

    firewall-cmd --reload
    
    • 1

    在这里插入图片描述

    查看已开放的端口

    firewall-cmd --list-all
    
    • 1

    在这里插入图片描述

    访问页面

    http://192.168.90.128:8080/
    在这里插入图片描述
    http://192.168.90.128:9090/
    在这里插入图片描述

    黑白名单

    过于简单 不多说了
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述

  • 相关阅读:
    大唐电信FPGA设计经验
    win10启动venv报错:无法加载文件 venv\Scripts\activate.ps1,因为在此系统上禁止运行脚本。
    Linux设置开机自启动的方式
    中级深入--day16
    golang 八股文整理
    js进阶笔记之原型,原型链
    Vue3+typeScripte -03
    Spring Bean的生命周期
    Transformer(李宏毅2022)
    mysql5.7安装教程
  • 原文地址:https://blog.csdn.net/weixin_49764009/article/details/128087299