如何在 nginx conf debug



利用  add_header 特性 把 要除錯的 目標寫在裡面



set $cors '';
            if ($http_origin ~ '^https?://(localhost|www\.g\.com|www\.g2\.com|g\.com|fun588\.com|g3\.com)') {
                    set $cors 'true';
            }
        
            if ($cors = 'true') {
                    add_header 'cors : ' $cors ; //假設我今天想觀察該變數運行
                    //注意 字串部份不能使用特殊符號 會印不出來
                    add_header 'Access-Control-Allow-Origin' "$http_origin" always;
                    add_header 'Access-Control-Allow-Credentials' 'true' always;

我們就可以在 瀏覽器 工具模式下 Headers 找到 印出的變數


沒有留言:

張貼留言