文章预览
扫码领资料 获网安教程 文章来源: https: //xz.aliyun.com/t/14966 nginx deny限制路径绕过 简介 这篇文章中,分享一个技巧。解析问题来绕过路由限制 环境记录 采取docker-compose 部署 部署nginx-docker mkdir nginx_test cd nginx_test touch docker-compose.yml mkdir -p nginx/conf.d touch nginx/conf.d/default.conf docker-compose.yml version: '3' services: nginx: image: nginx:latest ports: - "80:80" volumes: - ./nginx/conf.d:/etc/nginx/conf.d - ./html:/usr/share/nginx/html nginx/conf.d default.conf server { listen 80; server_name localhost; location / { root /usr/share/nginx/html; index index.html index.htm; } } nodejs、django会在下文说明 从nginx解析问题开始 Nginx 是一个高性能的 HTTP 服务器和反向代理服务器,广泛应用于网站托管和负载均衡。解析问题通常指 Nginx 在处理客户端请求时遇到的各种安全问题 Missing
………………………………