您的位置 首页 nginx

nginx 汇总

nginx 汇总

 nginx -v   #查看版本

nginx 接口日志面板 : 连接

nginx root txt文件校验-验证 : 连接

nginx 进程数量 :连接

nginx 命令( windows) : 链接

nginx 安全 加固 : 连接

nginx 7个 应用场景  :连接

极客时间: 连接

nginx 安装(docker版) :连接

docker-compose 部署nginx配置ssl :  连接

nginx安装 (nginx 安装) :   连接

nginx 编译安装 (监控) 1.22.1(k8s生产):  连接

nginx 安装(windows) :  连接

nginx  80 标准配置 : 连接

nginx 443 标准配置 :连接

带监控模块的nginx镜像 1.13.12  : 连接

编写 nginx 启动shell脚本  :  连接 

nginx配置成系统服务 systemctl  : 连接

文件:

nginx 文件目录浏览 按照创建时间排序配置 : 连接 

jenkins 安卓项目nginx 配置(文件下载) :连接

nginx 显示文件名不全(nginx 源码下载):  连接

nginx 测试页面配置 案例- 静态页面-图片页面 :  连接

nginx 禁止IP访问 只允许域名访问 : 连接

nginx 启动shell脚本 : 连接

端口:

nginx监听多个端口 :  连接

nginx 转发外部地址 : 连接 

nginx 端口转发(k8s):  连接

location /abc/ 和 /abc 的区别 : 连接

nginx 403 总结 :  连接

nginx正则匹配 : 连接

nginx 系统维护 界面配置  : 连接

Nginx实现404页面的实现! :连接

nginx location匹配及rewrite规则 : 连接

nginx 代理到 阿里云oss : 连接

nginx 配置 websocket : 连接 

nginx做TCP代理 :  连接

Nginx通过域名代理tcp端口 :连接

nginx 以 “/xxx“ 开头的请求代理中去掉xxx部分 ($ 的意思): 连接

正则表达式汇总 nginx  : 连接

nginx location 分类 :  连接

nginx强制http转https时,POST请求http失败 : 连接

nginx log 相关 : 连接

nginx https 配置中 有一个A域名, 然后又配置了B域名, 结果访问B会跳转到 A : 连接

nginx set 指令 (开启rewitelog ):连接

nginx proxy_pass : 连接

nginx 代理 websocker 4层转发 : 连接

nginx log - log_format 自定义log :   连接

nginx ssl 2个域名 访问a域名 跑到b域名 :连接

nginx client_max_body_size 上传文件限制 : 连接

nginx root alias proxy_pass的区别 : 连接

Nginx 负载均衡设置 : 链接 

nginx-跨域 问题:连接

nginx $request_time : 链接

参数:

client_max_body_size 可配置的位置 :连接

nginx try_files指令详解 : 连接

nginx autoindex 案例 :连接

nginx 错误:

nginx proxy_pass 502 559  selinux : 连接

504 Gateway Time-out :连接

413 Request Entity Too Large  :  连接

nginx 安全:

检测标准:nginx隐藏公开信息,实际检查:nginx公开X-Powered-By和Server信息 :连接

nginx 安全配置参数 : 连接 

证书:

nginx 配置 https ssl 证书 : 链接

https的页面中加载了非https的资源-显示不安全 : 连接

 

1- 配置

场景: 有a域名 和b 域名, a域名配置文件丢失后后, 会跳转到b 域名

server {
        listen 80;
        server_name gpt.kattgatt.com;

       if ($host = gpt.kattgatt.com) {
             return 301 https://$host$request_uri;
        } 


       return 404; 
}

 

502:

error_page 502 503 /50x.html;
location = /50x.html {
    root /usr/share/nginx/html;
}   

 

3- 测试nginx

page.conf

    server {
        listen      60081;
        server_name baimeidashu.com;
        charset utf-8;
        location / {
                root   /etc;
                autoindex       on;
                autoindex_exact_size    off;
                autoindex_localtime     on;
        }
      location /download {
               alias /var/log/;
               autoindex on; # 开启目录索引功能,可选,用于展示目录内容列表
         }

}

http://10.0.0.215:60081/download/

欢迎来撩 : 汇总all

白眉大叔

关于白眉大叔linux云计算: 白眉大叔

热门文章