# Explorer not communicating with custom fullnode

**URL:** https://forums.sui.io/t/explorer-not-communicating-with-custom-fullnode/2303
**Category:** Technical Support
**Created:** [January 11, 2023, 3:27pm UTC](https://forums.sui.io/t/explorer-not-communicating-with-custom-fullnode/2303 "2023-01-11T15:27:23Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![amnn](https://dub1.discourse-cdn.com/sui/user_avatar/forums.sui.io/amnn/32/25_2.png) [@amnn](https://forums.sui.io/u/amnn)
#### Post date: [January 11, 2023, 3:27pm UTC](https://forums.sui.io/t/explorer-not-communicating-with-custom-fullnode/2303/1 "2023-01-11T15:27:23Z")

</div>

This can happen because the browser detects a malformed [CORS](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS) header from the fullnode, which can be fixed by fixing the fullnode deployment’s CORS configuration.

To check whether this is affecting you, consult the browser console after setting Explorer’s Custom RPC URL. If it contains messages like:

> Access to XMLHttpRequest at ‘[your server]’ from origin ‘[https://explorer.sui.io/](https://explorer.sui.io/)’ has been blocked by CORS policy: Response to preflight request doesn’t pass access control check: The ‘Access-Control-Allow-Origin’ header contains multiple values ‘\*, \*’, but only one is allowed

CORS headers are the issue.

---

<div class="post-metadata">

### Author: ![Vincagame](https://dub1.discourse-cdn.com/sui/user_avatar/forums.sui.io/vincagame/32/1182_2.png) [@Vincagame](https://forums.sui.io/u/Vincagame)
#### Post date: [January 11, 2023, 4:19pm UTC](https://forums.sui.io/t/explorer-not-communicating-with-custom-fullnode/2303/2 "2023-01-11T16:19:20Z")

</div>

Hello there! Way to fix it:

- be sure that your node and HTTP-server work correctly (your endpoint is available from the outside and for api, sdk. etc);

- compare your fullnode schema with [latest](https://github.com/MystenLabs/sui/blob/main/crates/sui-open-rpc/spec/openrpc.json);

- use your endpoint as HTTP-server for [https://explorer.sui.io/](https://explorer.sui.io/) (if it doesn’t work, check previously steps);

- setup domain, and be sure that CORS is enabled for sui explorer domain.

In my case, I used nginx and my problem was that I enabled CORS from all websites by `add_header Access-Control-Allow-Origin *` but default CORS was enabled, so I removed add\_header and it helped.

**But remember CORS is for your security and be sure that you know what you do with it.**
