Nginx教程

Nginx的使用

本文主要是介绍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的使用的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!