Nginx的使用
2022/2/8 7:12:26
本文主要是介绍Nginx的使用,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
静态网页存储目录 默认的存储目录 /usr/local/nginx/html 自己创建新的目录: 应该在 /usr/local/nginx/ mkdir /usr/local/nginx/mydir 练习 在Nginx服务器上进行网页部署, 实现如下访问: 在/usr/local/nginx/创建新的目录, yundisk用来存储静态网页 访问地址: http://192.168.80.254/login.html login.html放到什么位置? / -> 服务器的资源根目录, /usr/local/nginx/yundisk login.htm-> 放到yundisk中 服务器要处理的动作 # 对应这个请求服务器要添加一个location location 指令(/) { # 找一个静态网页 root yundisk; # 相对于/usr/local/nginx/来找 # 客户端的请求是一个目录, nginx需要找一默认显示的网页 index index.html index.htm; } # 配置之后重启nginx sudo nginx -s reload 访问地址: http://192.168.80.254/hello/reg.html hello是目录 reg.html放到hello目录中 如何添加location location /hello/ { root yundisk; index xx.html; } 访问地址: http://192.168.80.254/upload/ 浏览器显示upload.html 直接访问一个目录, 得到一默认网页 upload是一个目录, uplaod.html应该再upload目录中 location /upload/ { root yundisk; index upload.html; }这篇关于Nginx的使用的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-13用Nginx防范DDoS攻击的那些事儿
- 2024-12-13用Terraform在AWS上搭建简单NGINX服务器指南
- 2024-10-29Nginx发布学习:从入门到实践的简单教程
- 2024-10-28Nginx发布:新手入门教程
- 2024-10-21nginx 怎么设置文件上传最大20M限制-icode9专业技术文章分享
- 2024-10-17关闭 nginx的命令是什么?-icode9专业技术文章分享
- 2024-09-17Nginx实用篇:实现负载均衡、限流与动静分离
- 2024-08-21宝塔nginx新增8022端口方法步骤-icode9专业技术文章分享
- 2024-08-21nginx配置,让ws升级为wss访问的方法步骤-icode9专业技术文章分享
- 2024-08-15nginx ws代理配置方法步骤-icode9专业技术文章分享