Nginx作为静态内容服务器(Windows环境)
2020-12-13 13:44
标签:style blog http io color os 使用 sp 文件 1、简单安装 1)下载 2)解压后的路径 3)执行nginx.exe,访问http://localhost ,出现Welcome to nginx!欢迎内容,安装成功。 4)在安装路径的logs目录下,会自动生成一个nginx.pid文件,文件内容就是nginx的主进程pid。 2、简单使用命令 3、静态内容服务器 访问html文件时,让nginx映射到/data/html路径下;访问图片文件时,让nginx映射到/data/image路径下。 1)创建data目录,然后在data目录下分别插件html目录和image目录。 2)在html目录中放入index.html、hello.html文件 3)在image目录中放入1.jpg、2.jpg两张图片 4)配置nginx.conf 在http节点内的server节点中进行配置。 5)请求 http://localhost/image/1.jpg 时,Nginx自动响应 http://localhost/data/image/1.jpg 请求 http://localhost/hello.html 时,Nginx自动响应 http://localhost/data/html/hello.html Nginx作为静态内容服务器(Windows环境) 标签:style blog http io color os 使用 sp 文件 原文地址:http://www.cnblogs.com/luxh/p/4054341.htmlhttp://nginx.org/en/download.html
E:\Study\nginx\nginx-1.7.6
nginx -s stop 快速停止
nginx -s quit 安全退出(会处理完正在进行的请求)
nginx -s reload 修改了nginx的配置文件后执行该命令生效
nginx -s reopen 重打开日志文件
location / {
#指定根目录
root E:/Study/nginx/nginx-1.7.6/data/html;
#指定首页
index index.html;
}
location /image/ {
#指定根目录
root E:/Study/nginx/nginx-1.7.6/data;
}
下一篇:python动态添加属性