mirror of
https://github.com/getnamingo/registry.git
synced 2025-07-23 11:05:57 +02:00
RDAP no longer binds on public IP, Caddy does the job
This commit is contained in:
parent
251eaeab2e
commit
e17460dacf
2 changed files with 2 additions and 2 deletions
|
@ -27,7 +27,7 @@ $pool = new Swoole\Database\PDOPool(
|
|||
);
|
||||
|
||||
// Create a Swoole HTTP server
|
||||
$http = new Server('0.0.0.0', 7500);
|
||||
$http = new Server('127.0.0.1', 7500);
|
||||
$http->set([
|
||||
'daemonize' => false,
|
||||
'log_file' => '/var/log/namingo/rdap_application.log',
|
||||
|
|
|
@ -27,7 +27,7 @@ $pool = new Swoole\Database\PDOPool(
|
|||
);
|
||||
|
||||
// Create a Swoole HTTP server
|
||||
$http = new Server('0.0.0.0', 7500);
|
||||
$http = new Server('127.0.0.1', 7500);
|
||||
$http->set([
|
||||
'daemonize' => false,
|
||||
'log_file' => '/var/log/namingo/rdap_application.log',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue