Browse Source

Fix bug with ignored domain/dir

master
seven 4 years ago
parent
commit
16fd2991d3
  1. 10
      gemini.class.php

10
gemini.class.php

@ -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…
Cancel
Save