Disable all external test URLs

--- a/sql/http.sql
+++ b/sql/http.sql
@@ -2,6 +2,7 @@ CREATE EXTENSION http;
 SET http.server_host = 'http://localhost:9080';
 set http.timeout_msec = 10000;
 SELECT http_set_curlopt('CURLOPT_TIMEOUT', '10');
+/*
 -- if local server not up use global one
 DO language plpgsql $$
 BEGIN
@@ -12,6 +13,7 @@ BEGIN
   END;
 END;
 $$;
+*/
 
 -- Status code
 SELECT status
@@ -176,6 +178,7 @@ SELECT status FROM http_get(current_sett
 -- SET to bogus file
 SET http.CURLOPT_CAINFO = '/path/to/somebundle.crt';
 
+/*
 -- should fail
 DO $$
 BEGIN
@@ -185,12 +188,15 @@ EXCEPTION
         RAISE WARNING 'Invalid cert file';
 END;
 $$;
+*/
 
 -- set to ignore cert
 SET http.CURLOPT_SSL_VERIFYPEER = '0';
 
+/*
 -- should pass
 SELECT status FROM http_get('https://postgis.net');
+*/
 
 SHOW http.CURLOPT_CAINFO;
 
--- a/expected/http.out
+++ b/expected/http.out
@@ -7,6 +7,7 @@ SELECT http_set_curlopt('CURLOPT_TIMEOUT
  t
 (1 row)
 
+/*
 -- if local server not up use global one
 DO language plpgsql $$
 BEGIN
@@ -17,6 +18,7 @@ BEGIN
   END;
 END;
 $$;
+*/
 -- Status code
 SELECT status
 FROM http_get(current_setting('http.server_host') || '/status/202');
@@ -268,6 +270,7 @@ SELECT status FROM http_get(current_sett
 
 -- SET to bogus file
 SET http.CURLOPT_CAINFO = '/path/to/somebundle.crt';
+/*
 -- should fail
 DO $$
 BEGIN
@@ -277,16 +280,13 @@ EXCEPTION
         RAISE WARNING 'Invalid cert file';
 END;
 $$;
-WARNING:  Invalid cert file
+*/
 -- set to ignore cert
 SET http.CURLOPT_SSL_VERIFYPEER = '0';
+/*
 -- should pass
 SELECT status FROM http_get('https://postgis.net');
- status 
---------
-    200
-(1 row)
-
+*/
 SHOW http.CURLOPT_CAINFO;
    http.curlopt_cainfo   
 -------------------------
