mirror of
https://github.com/eapl-gemugami/gemini-php.git
synced 2025-02-01 09:34:17 +00:00
Fix bug with ignored domain/dir
This commit is contained in:
parent
a9ce2ae907
commit
16fd2991d3
@ -7,7 +7,7 @@ class Gemini {
|
|||||||
|
|
||||||
function __construct($config) {
|
function __construct($config) {
|
||||||
if(empty($config['certificate_file']))
|
if(empty($config['certificate_file']))
|
||||||
die("Missing certificate file. Edit config.php");
|
die("Missing certificate file. Edit config.php\n");
|
||||||
$this->ip = "0";
|
$this->ip = "0";
|
||||||
$this->port = "1965";
|
$this->port = "1965";
|
||||||
$this->data_dir = "hosts/";
|
$this->data_dir = "hosts/";
|
||||||
@ -32,11 +32,11 @@ class Gemini {
|
|||||||
$this->log_to_file("Log created", null, null, null, null);
|
$this->log_to_file("Log created", null, null, null, null);
|
||||||
}
|
}
|
||||||
if(!is_writable($this->log_file)) {
|
if(!is_writable($this->log_file)) {
|
||||||
die("{$this->log_file} is not writable.");
|
die("{$this->log_file} is not writable.\n");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(!is_readable($this->certificate_file))
|
if(!is_readable($this->certificate_file))
|
||||||
die("Certificate file {$this->certificate_file} not readable.");
|
die("Certificate file {$this->certificate_file} not readable.\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
function parse_request($request) {
|
function parse_request($request) {
|
||||||
@ -88,8 +88,8 @@ class Gemini {
|
|||||||
$hostname = "";
|
$hostname = "";
|
||||||
if(!is_array($url))
|
if(!is_array($url))
|
||||||
return false;
|
return false;
|
||||||
if(!empty($parsed_url['host']))
|
if(!empty($url['host']))
|
||||||
$hostname = $parsed_url['host'];
|
$hostname = $url['host'];
|
||||||
|
|
||||||
$valid_hosts = $this->get_valid_hosts();
|
$valid_hosts = $this->get_valid_hosts();
|
||||||
if(!in_array($hostname, $valid_hosts))
|
if(!in_array($hostname, $valid_hosts))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user