2021年9月 的存档
20219 月22

M1 Macbook 您没有权限来打开应用程序 解决方法

1、打开终端,粘贴如下内容,注意加上空格

sudo xattr -rd com.apple.quarantine 

2、从访达的应用程序中把App拖到终端执行:

sudo xattr -rd com.apple.quarantine /Applications/Parallels\ Desktop.app
20219 月17

Nginx 匹配路径让请求走不同代理

location /api/v1 {
        set $is_matched 0;
        if ($request_uri ~ /api/v1/user/100001/ ) {
            proxy_pass https://127.0.0.1:1001/;
            set $is_matched 1;
        }
        
        if ($request_uri ~ /api/v1/user/100002/ ) {
            proxy_pass https://127.0.0.1:1001/;
            set $is_matched 1;
        }

        # 没有匹配到,跳转到默认页面
        if ($is_matched = 0) {
            proxy_pass https://127.0.0.1:8080;
        }
        
    }