从头开始学Nginx----解决跨域并代理多个静态文件路径
Posted mb62caa7d6f2477
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从头开始学Nginx----解决跨域并代理多个静态文件路径相关的知识,希望对你有一定的参考价值。
可参考我的配置
server
listen 80;
server_name localhost;
location /
root /static;
index index.html index.htm;
# 解决跨域
add_header Access-Control-Allow-Origin *;
add_header Access-Control-Allow-Credentials true;
location /video
#使用alias关键字处理第二个静态文件路径
alias /static/video;
index index.html index.htm;
# 解决跨域
add_header Access-Control-Allow-Origin *;
add_header Access-Control-Allow-Credentials true;
以上是关于从头开始学Nginx----解决跨域并代理多个静态文件路径的主要内容,如果未能解决你的问题,请参考以下文章