You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			19 lines
		
	
	
		
			483 B
		
	
	
	
		
			PHP
		
	
			
		
		
	
	
			19 lines
		
	
	
		
			483 B
		
	
	
	
		
			PHP
		
	
<?php
 | 
						|
$user = $_SERVER['PHP_AUTH_USER'];
 | 
						|
$pass = $_SERVER['PHP_AUTH_PW'];
 | 
						|
 | 
						|
$validated = ($user == $config['admin_user']) && password_verify($pass, $config['admin_pass']);
 | 
						|
 | 
						|
if (!$validated) {
 | 
						|
  header('WWW-Authenticate: Basic realm="RaspAP"');
 | 
						|
  if (function_exists('http_response_code')) {
 | 
						|
    // http_response_code will respond with proper HTTP version back.
 | 
						|
    http_response_code(401);
 | 
						|
  } else {
 | 
						|
    header('HTTP/1.0 401 Unauthorized');
 | 
						|
  }
 | 
						|
 | 
						|
  exit('Not authorized'.PHP_EOL);
 | 
						|
}
 | 
						|
 |