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/.*', +]