Answered

Hey, we use intercom for our help center and currently our help center robots.txt file gives a 502 error code (https://help.whatagraph.com/robots.txt)Any idea on how to solve this?

  • 1 February 2023
  • 2 replies
  • 226 views

Hey, we use intercom for our help center and currently our help center robots.txt file gives a 502 error code (https://help.whatagraph.com/robots.txtAny idea on how to solve this?
icon

Best answer by Shauna 3 February 2023, 15:41

View original

2 replies

Userlevel 3
Badge +4

Hello @ramona​ 👋🏼

 

Shauna here from Support! Is your help center set up using a custom domain?

 

Can you check and make sure it's been set up correctly using this doc 👇🏼

 

https://developers.intercom.com/installing-intercom/docs/set-up-your-custom-domain/p>

 

If it is and you're still getting the error - it might be good to reach out to us via the messenger with a screenshot of the 'console errors' you're getting & we can have someone dig into this for you 🔎

Hello,

 

I landed here also from a Google Search, as if you search in your site in google with `site:your.custom.domain` you will find out your site is not indexed due the problem with robots.txt

 

If you are using nginx (or ingress nginx) check your logs for:

“upstream sent too big header while reading response header from upstream”

 

If you find that message in your logs, you need to bump, in the annotation of your ingress (default is 4k)

nginx.ingress.kubernetes.io/proxy-buffer-size: "8k"

or http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_buffer_size in a vanilla nginx configuration.

 

That will resolve the problem with the 502 error when hitting custom.domain/robots.txt

Reply