Browse Source

remove auth details, now provided by env

Jan Behrens 3 years ago
parent
commit
ea6edad662
1 changed files with 2 additions and 2 deletions
  1. 2 2
      STS_channels.php

+ 2 - 2
STS_channels.php

@@ -57,8 +57,8 @@
                 )
 	);
 
-	$username = 'katrin';
-	$password = 'katrin.Pauli%2020';
+    $username = getenv('PHP_ADEI_USERNAME');
+    $password = getenv('PHP_ADEI_PASSWORD');
 	$context = stream_context_create(array(
 		'http' => array(
 			'header'  => "Authorization: Basic " . base64_encode("$username:$password"), "Connection: close\r\n"