``` upstream warp { server 127.0.0.1:6666; } server { # just pass through ipfs http api to the proxy location ~ "^/api/v0/(.*)$" { proxy_pass http://warp; } } ```