0%

Nginx静态资源配置

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
server {
    # 当nginx接到请求后,会匹配其配置中的service模块
    # 匹配方法就是将请求携带的host和port去跟配置中的server_name和listen相匹配

listen 80; #代表nginx要监听的端口
server_name localhost; # 定义当前虚拟主机(站点)匹配请求的主机名

location / {
root html; # Nginx默认值
# 设定Nginx服务器返回的文档名
index index.html index.htm; # 先找根目录下的index.html,如果没有再找index.htm
}

    # 静态资源配置
    location /download {
        alias /usr/local/download;
    }
}