RDAP no longer binds on public IP, Caddy does the job

This commit is contained in:
Pinga 2025-06-18 11:57:38 +03:00
parent 251eaeab2e
commit e17460dacf
2 changed files with 2 additions and 2 deletions

View file

@ -27,7 +27,7 @@ $pool = new Swoole\Database\PDOPool(
); );
// Create a Swoole HTTP server // Create a Swoole HTTP server
$http = new Server('0.0.0.0', 7500); $http = new Server('127.0.0.1', 7500);
$http->set([ $http->set([
'daemonize' => false, 'daemonize' => false,
'log_file' => '/var/log/namingo/rdap_application.log', 'log_file' => '/var/log/namingo/rdap_application.log',

View file

@ -27,7 +27,7 @@ $pool = new Swoole\Database\PDOPool(
); );
// Create a Swoole HTTP server // Create a Swoole HTTP server
$http = new Server('0.0.0.0', 7500); $http = new Server('127.0.0.1', 7500);
$http->set([ $http->set([
'daemonize' => false, 'daemonize' => false,
'log_file' => '/var/log/namingo/rdap_application.log', 'log_file' => '/var/log/namingo/rdap_application.log',