Nginx

如何禁用用於外部伺服器連接的 postgresql 埠?

  • April 18, 2022

我在我的專用伺服器上安裝了 ubuntu 20.04、docker 和帶有 postgressql 的容器。我有問題,因為我希望 ubuntu 阻止與 postgressql、域外伺服器、ip 伺服器等的所有連接,這些連接添加到伺服器。

目前我可以連接 PostgreSQL:

  • 通過 ssh
  • 通過伺服器IP。ip.ip.ip:5432/…
  • 通過添加到 nginx 的所有域,例如 domain1.com:5432 等。

我想通過伺服器 ip 和添加到 nginx 的所有域禁用連接

@mxcdh 如果您希望您的 postgres 容器可以從其他 docker 容器訪問,則無需公開埠,只需將兩個容器放在同一個 docker 網路中即可。

引用自:https://serverfault.com/questions/1098583