Images that are not displayed on Twitter. - ERROR: page retrieval failed because the request was disabled

This is the URL of my website https://www.healthdrop.in and I get

ERROR: page selection is not possible because a timeout has been requested.

When trying to use https://cards-dev.twitter.com/validator

I try to mention all the links on different sites, but did not succeed.

Check all metafiles.

I contact twittercommunity and they say my apache configuration is wrong and the problem is

"Other errors" are most often the wrong SSL configuration. in case of your server. I see an SSL3 warning: warning: an unrecognized name that indicates that you have an error similar to the one that was also related in the troubleshooting message.

So, I run apachectl configtest to check apache configuration and result

OK syntax

I check my site for SSL on SSLLABS

I tried to take a step here, but to no avail.

Can anyone guide me more. I am using AWS EC2 ubuntu with AWS S3 for images.

+1
source share
1 answer

1) First of all, try debugging your SSL by running the following command

 openssl s_client -servername <hostname> -connect <hostname>:443 -state 

if it prints this message:

Reading SSL3: Warning: Unrecognized Name

2) , then try adding

 ServerName www.healthdrop.in ServerAlias healthdrop.in 

in /etc/apache2/sites-available/default-ssl.conf or in a virtual host file

3) then restart apache server

sudo service apache2 restart

0
source

Source: https://habr.com/ru/post/1235410/


All Articles