下载Nginx文件
text 本机的版本为:nginx-1.24.0[http://nginx.org/download/nginx-1.24.0.zip]()
配置nginx.conf文件,配置内容如下:
`properties
server {
# 服务监听端口、绑定 IP、监听方式的配置
listen 8000;
listen localhost:8080;
# 定义了服务器块(server block)的域名
server_name localhost;
# 匹配路径
location /files {
# 重置当前文件的目录
alias C:\\dove\\nginx-1.24.0\\files;
# 设置允许访问的权限为所有
allow all;
# 打开目录浏览功能
autoindex on;
# 一次访问能写入的临时文件的大小,设置为0时, 则直接关闭硬盘缓冲
proxy_max_temp_file_size 0;
# 显示文件的本地时间
autoindex_localtime on;
}
}`
复制文件
文件复制到C:\dove\nginx-1.24.0\files
启动后进行访问
启动nginx后,访问路径: http://localhost:8000/files/文件名
标签:files,文件,nginx,Windows,Nginx,服务器,localhost,1.24 From: https://www.cnblogs.com/karl-zheng/p/18409181