V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
NGINX
NGINX Trac
3rd Party Modules
Security Advisories
CHANGES
OpenResty
ngx_lua
Tengine
在线学习资源
NGINX 开发从入门到精通
NGINX Modules
ngx_echo
whereFly
V2EX  ›  NGINX

请问 Nginx 怎么添加 CORS 白名单?

  •  
  •   whereFly · 4 天前 · 1215 次点击

    比如 a.com 下的图片、js 文件等等,只允许 b.comc.com 调用。 其他域名调用的话就显示 404 或者 403 。

    13 条回复    2025-04-02 09:08:52 +08:00
    Chaidu
        1
    Chaidu  
       4 天前   ❤️ 5
    你根本不知道 CORS 是什么意思!
    Chaidu
        2
    Chaidu  
       4 天前
    以后有问题去问 AI 就行,不要发帖。问题:Nginx 防盗链
    wu00
        3
    wu00  
       4 天前
    Access-Control-Allow-Origin
    wzhaoyang
        4
    wzhaoyang  
       4 天前   ❤️ 1
    img 、js 不存在跨域
    zx9481
        5
    zx9481  
       4 天前   ❤️ 1
    location /images/ {
    valid_referers none blocked www.yourdomain.com yourdomain.com;
    if ($invalid_referer) {
    return 403; # 返回 403 Forbidden 错误
    # 或者可以重定向到特定的图片或页面
    # return 302 http://www.yourdomain.com/blocked.png;
    }
    }
    paopjian
        6
    paopjian  
       4 天前
    没啥用, 想用你的东西再不行拿反代拉, 你资源真重要就得走登录控制
    duzhuo
        7
    duzhuo  
       4 天前
    @paopjian 确实,就算登录控制之后日志也得存好
    hackroad
        8
    hackroad  
       4 天前   ❤️ 1
    #
    # Wide-open CORS config for nginx
    #
    location / {
    if ($request_method = 'OPTIONS') {
    add_header 'Access-Control-Allow-Origin' '*';
    add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
    #
    # Custom headers and headers various browsers *should* be OK with but aren't
    #
    add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range';
    #
    # Tell client that this pre-flight info is valid for 20 days
    #
    add_header 'Access-Control-Max-Age' 1728000;
    add_header 'Content-Type' 'text/plain; charset=utf-8';
    add_header 'Content-Length' 0;
    return 204;
    }
    if ($request_method = 'POST') {
    add_header 'Access-Control-Allow-Origin' '*' always;
    add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS' always;
    add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range' always;
    add_header 'Access-Control-Expose-Headers' 'Content-Length,Content-Range' always;
    }
    if ($request_method = 'GET') {
    add_header 'Access-Control-Allow-Origin' '*' always;
    add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS' always;
    add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range' always;
    add_header 'Access-Control-Expose-Headers' 'Content-Length,Content-Range' always;
    }
    }
    lisongeee
        9
    lisongeee  
       4 天前   ❤️ 1
    把账号密码私钥给我,我开 ssh 上去免费给你弄
    wangtian2020
        10
    wangtian2020  
       4 天前   ❤️ 3
    跨域是指,接口没带 CORS 跨域返回头,你的浏览器认为自己不配访问。postman 调用接口是能拿到东西的。
    防盗链是指,NGINX 觉得对方的请求头有问题不配拿到任何东西。
    YeatsOnce
        11
    YeatsOnce  
       4 天前
    @lisongeee #9 127.0.0.1:22 , root/password123 。谢谢老哥
    daimaosix
        12
    daimaosix  
       3 天前 via Android
    开 ssh 我上去看看
    yassinezhang
        13
    yassinezhang  
       3 天前
    跨域是针对浏览器的名词,只存在于浏览器,正如上面老哥说的,防盗链一行命令就能加,后端程序里现在也有 CORS 插件很方便就能引入。但也仅仅局限于浏览器,
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   2626 人在线   最高记录 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 20ms · UTC 13:44 · PVG 21:44 · LAX 06:44 · JFK 09:44
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.