首页 > 系统相关 >Nginx学习笔记-部署静态页面实践

Nginx学习笔记-部署静态页面实践

时间:2023-07-04 13:45:55浏览次数:46  
标签:box 03e9f4 log 100% 笔记 Nginx html login 页面

目录

准备一个静态登录页面demo

需要将下面的两个文件index.htmlindex.css放到nginx安装目录下html目录中

HTML静态页面-index.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>login</title>
    <link rel="stylesheet" href="./index.css">
</head>
<body>
    <div class="login-box">
        <h2>Login</h2>
        <form action="">
            <div class="user-box">
                <input type="text" name="" required>
                <label for="">username</label>
            </div>
            <div class="user-box">
                <input type="password" name="" required>
                <label for="">password</label>
            </div>
            <a href="">
                <span></span>
                <span></span>
                <span></span>
                <span></span>
                Submit
            </a>
        </form> 
    </div>
    
</body>
</html>

CSS样式文件-index.css

html{
    height: 100%;
}
body{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background: linear-gradient(#141e30, #243b55);
}
.login-box{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    padding: 40px;
    background: rgba(0,0,0,.6);
    box-sizing: border-box;
    box-shadow: 0 15px  25px rgba(0, 0, 0, .6);
    border-radius: 10px;
}
.login-box h2{
    margin: 0  0 30px;
    padding: 0;
    color: #fff;
    text-align: center;
}
.login-box .user-box{
    position: relative;
}
.login-box .user-box input{
    width: 100%;
    padding: 10px 0;
    font-size: 20px;
    color: #fff;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    background: transparent;
}
.login-box .user-box label{
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 0;
    color: #fff;
    pointer-events: none;
    transition: .3s;
}
.login-box .user-box input:focus~label,
.login-box .user-box input:valid~label{
    top: -20px;
    left: 0;
    color: #03e9f4;
    font-size: 12px;
}
.login-box form a{
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #03e9f4;
    text-decoration: none;
    letter-spacing: 4px;
    overflow: hidden;
    transition: .5s;
    margin-top: 40px;
    text-transform: uppercase;
}
.login-box form a:hover{
    background: #03e9f4;
    color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 5px #03e9f4,
       0 0 25px #03e9f4,
       0 0 50px #03e9f4,
       0 0 80px #03e9f4;
}

/* 开始动画 */

.login-box a span{
    position: absolute;
    display: block;
}

/* 第一根线 上侧 从左至右 */
.login-box a span:nth-child(1){
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,transparent,#03e9f4);

    /* 动画持续1s 匀速 无限次运行 */
    animation: an-1 1.5s linear infinite;
}
@keyframes an-1 {
    0%{
        left: -100%;
    }
    50%,100%{
        left: 100%;
    }
}


/* 第二根线 右侧 从上至下 */
.login-box a span:nth-child(2){
    right: 0;
    top: -100%;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg,transparent,#03e9f4);

    /* 动画持续1s 匀速 无限次运行 */
    animation: an-2 1.5s linear infinite;
    animation-delay: .25s;
}
@keyframes an-2 {
    0%{
        top: -100%;
    }
    50%,100%{
        top: 100%;
    }
}


/* 第三根线  下侧 从右至左 */
.login-box a span:nth-child(3){
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg,transparent,#03e9f4);

    /* 动画持续1s 匀速 无限次运行 */
    animation: an-3 1.5s linear infinite;
    animation-delay: .5s;
}
@keyframes an-3 {
    0%{
        right: -100%;
    }
    50%,100%{
        right: 100%;
    }
}

/* 第四根线  左侧 从下至上 */
.login-box a span:nth-child(4){
    left: 0;
    bottom: -100%;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg,transparent,#03e9f4);

    /* 动画持续1s 匀速 无限次运行 */
    animation: an-4 1.5s linear infinite;
    animation-delay: .75s;
}
@keyframes an-4 {
    0%{
        bottom: -100%;
    }
    50%,100%{
        bottom: 100%;
    }
}

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;
}

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; # 主机IP

        #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;
        }
    }
}

启动Nginx

nginx -c nginx配置文件路径 # 如果不指定配置文件路径则使用默认的配置文件

样例展示

浏览器访问 http://localhost:80

image-20230704133455385

标签:box,03e9f4,log,100%,笔记,Nginx,html,login,页面
From: https://www.cnblogs.com/jruing/p/17524334.html

相关文章

  • 静态页面_登录页面
    <!DOCTYPEhtml><htmllang="zh-CN"><head> <!--必须的meta标签--> <metacharset="utf-8"> <metaname="viewport"content="width=device-width,initial-scale=1"> <linkhref=&quo......
  • cesium学习笔记1
    node.js安装Node.js下载安装及环境配置教程【超详细】_nodejs下载_WHF__的博客-CSDN博客进入官网地址下载安装包 https://nodejs.org/zh-cn/download/选择对应你系统的Node.js版本,这里我选择的是Windows系统、64位cesium安装......
  • 单调栈单调队列学习笔记
    目录:单调栈1.1概念1.2实现1.3时间复杂度分析1.4应用单调队列1.1概念1.2实现1.3时间复杂度分析1.4应用习题1.单调栈1.1概念单调栈为满足单调性的栈结构,栈内元素满足单调性。1.2实现为满足单调性,在遍历到一个元素时,若此时加入后栈不满足单调性,则弹出栈......
  • Nginx一网打尽:动静分离、压缩、缓存、黑白名单、跨域、高可用、防盗链、SSL、性能优化
    Nginx一网打尽:动静分离、压缩、缓存、黑白名单、跨域、高可用、防盗链、SSL、性能优化...架构营 2023-07-0307:10 发表于上海收录于合集#nginx2个#架构172个#web2个引言一、性能怪兽-Nginx概念深入浅出二、Nginx环境搭建三、Nginx反向代理-负载均衡......
  • nginx理解
    1.每个server块都相当于一个虚拟主机(解析站点),包含多个location(处理请求、配置)server{listen80;//监听端口server_namek2.comkh.com;//站点域名indexindex.phpindex.htmlindex.htmdefault.phpdefault.htmdefault.html;//默认访问文件root/www......
  • 方芳:非物质文化遗产学习整理笔记(5-6)
    武汉市江夏路桥工程有限公司中央财经大学 经济管理学院    方   芳    15927602711 第五章 非物质文化遗产的利用利用的取向非物质文化遗产利用职向主要是指在现代社会文化语境中非物质文化遭产将何去何从的问题。具体是指非物质文化遗产的利用向......
  • ChatGLM-6B阿里云服务器部署及微调笔记
    1、ChatGLM-6B阿里云服务器部署整体参考零基础,零成本,部署一个属于你的大模型https://blog.csdn.net/qqxx6661/article/details/130311311?ops_request_misc=&request_id=&biz_id=102&utm_term=阿里云chatglm&utm_medium=distribute.pc_search_result.none-task-blog-2allsobaid......
  • 关闭vue项目中Uncaught runtime errors弹窗页面
    看控制台发现有webpack类名,应该是webpack搞出来的解決办法再vue.config.js中添加以下配置:module.exports=defineConfig({ ... devServer:{client:{overlay:false}}})......
  • 公共语言运行库(CLR)开发系列课程(3):COM Interop基础 学习笔记
    公共语言运行库(CLR)开发系列课程(3):COMInterop基础学习笔记  上章地址什么是COMComponentObjectModel组建对象模型 基于接口(Interface)接口=协议IID标识接口V-table虚表方式调用单继承 对象(Object)实现一个或者多个接口举例:IDispatch......
  • 第四天(Thymeleaf,MVC自动配置原理,,配置项目环境及首页,页面国际化,登录+拦截器)
    ThymeleafMVC自动配置原理ContentNegotiatingViewResolver内容协商视图解析器转换器和格式化器配置项目环境及首页页面国际化中英切换登录+拦截器......