• Nginx部署前端网页,Nginx搭建静态资源服务器


    一、准备静态网页

    我们以dlib静态网页为例,使用nginx部署前端网页:
    下载地址:http://dlib.net/

    下载完成之后上传至linux服务器。

    在这里插入图片描述
    在docs目录下,是一个完整的html静态页面,接下来我们用nginx将其部署。

    二、安装nginx

    Nginx手动编译、安装超超详解

    三、部署网页

    user  root; # 启动用户
    worker_processes  1;
    
    events {
        worker_connections  1024;
    }
    
    http {
        include       mime.types;
        default_type  application/octet-stream;
    
        sendfile        on;
        keepalive_timeout  65;
        gzip  on; # 打开gzip压缩,可以减少带宽
        gzip_min_length 1; # 小于多少字节不压缩
        gzip_comp_level 2; # 压缩级别
        gzip_types       text/plain application/javascript text/css application/xml text/javascript application/x-httpd-php image/jpeg image/gif image/png; # 指定压缩类型
    
        server {
            listen       80; # 1.指定端口
            server_name  dlib; # 2.服务名
    
            location / {
                alias /root/dlib/dlib-19.24/docs/; # 3.指定静态文件目录
            }
    
            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
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33

    配置完毕之后,执行nginx -s reload,将nginx配置重新加载。

    访问192.168.56.10 ,默认会找到index.html首页。

    四、显示文件及文件夹目录信息

    user  root; # 启动用户
    worker_processes  1;
    
    events {
        worker_connections  1024;
    }
    
    http {
        include       mime.types;
        default_type  application/octet-stream;
    
        sendfile        on;
        keepalive_timeout  65;
        gzip  on; # 打开gzip压缩,可以减少带宽
        gzip_min_length 1; # 小于多少字节不压缩
        gzip_comp_level 2; # 压缩级别
        gzip_types       text/plain application/javascript text/css application/xml text/javascript application/x-httpd-php image/jpeg image/gif image/png; # 指定压缩类型
    
        server {
            listen       80; # 1.指定端口
            server_name  dlib; # 2.服务名
    
            location / {
                alias /root/dlib/dlib-19.24/docs/; # 3.指定静态文件目录
                autoindex on; # 自动索引
                # set $limit_rate 1k; # 指定带宽
            }
    
            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
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35

    但是,根目录如果有index.html的话,会默认打开index.html
    在这里插入图片描述

  • 相关阅读:
    PCB厚铜板的设计,这一点一定要注意
    JavaScript系列之async与await
    Zabbix结合Grafana统计日志网站访问量
    Unity Joint用法及案例
    【k8s】安装可视化面板Dashboard
    python可视化----pyqtgraph
    学校安全用电管理系统解决方案
    嵌入式面试笔试刷题(day14)
    CDH/CDP 是什么?
    Python爬虫和数据分析,石油原油加工产品产量数据处理分析
  • 原文地址:https://blog.csdn.net/A_art_xiang/article/details/133082930