Nginx静态资源配置 发表于 2022-10-20 更新于 2023-03-01 分类于 Nginx 本文字数: 127 阅读时长 ≈ 1 分钟 123456789101112131415161718server { # 当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; }}