安装nginx
首先去官网下载nginx nginx: download
当前最新版本是 nginx/Windows-1.23.1,你可以根据个人的选择下载不同的版本。
这里下载下来的时候值个zip的压缩包,先解压,然后把里面的文件放在你想要放置的文件夹下。
安装好的文件目录长这样~
配置nginx.conf文件
用记事本打开conf文件下的nginx.conf文件,找到“# another virtual host using mix of IP-, name-, and port-based configuration”这句话,在这句话的上面添加一段server如下
server {
listen 8081;
server_name resource;
root D:/program/vsc/ebook/resource;
autoindex on;
location / {
add_header Access-Control-Allow-Origin *;
}
add_header Cache-Control "no-cache, must-revalidate";
}
- listen 代表监听的端口号
- server_name 代表服务器的名字
- root 代表静态资源的目录,这个地方要填你自己创建的文件资源路径,层级之间使用正斜杠“/”
- antoindex 代表是否开启浏览目录权限,默认是off
- add_header Access-Control-Allow-Origin * 代表允许跨域访问
- add_header Cache-Control "no-cache, must-revalidate" 代表不缓存
启动
配置完成后,保存关闭文件
双击nginx.exe,会发现屏幕闪了一下,这时候已经启动了nginx,可以在任务管理器中看到
然后在浏览器打开http://localhost:8081就能看到了