From 784e9e9b87c9983ea2594bf57e3b397a8df05603 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 25 Oct 2017 10:41:53 +0200 Subject: [PATCH] Ignore php-myadmin.ru from linkcheck in docs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The site works, it's just missing intermediate certificate, what makes it fail in the linkcheck, but usually works in the browser as it has already seen the intermediate cert before elsewhere. Signed-off-by: Michal Čihař --- doc/conf.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/doc/conf.py b/doc/conf.py index 87896b6fee..1e9402a607 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -307,4 +307,9 @@ lexers['php'] = PhpLexer(startinline=True) linkcheck_retries = 10 linkcheck_timeout = 10 linkcheck_anchors = False -linkcheck_ignore = [r'https://software.opensuse.org/package/.*'] +linkcheck_ignore = [ + # Site is often down + r'https://software.opensuse.org/package/.*', + # They have messed up SSL setup + r'https://php-myadmin.ru/.*', +]