This repository has been archived on 2025-04-14. You can view files and clone it, but cannot push or open issues or pull requests.
matrix-synapse-debian/nginx/workers/private.conf
Kiara Grouwstra 0124ae08e2
init
2025-04-14 11:19:49 +02:00

13 lines
362 B
Text

# This file defines the "safe" IP addresses that are allowed to use the admin endpoints
# of our installation. Store this file under /etc/nginx/snippets, so you can load it on
# demand for the bits you want/need to protect.
allow 127.0.0.1;
allow ::1;
allow 12.23.45.78;
allow 87.65.43.21;
allow dead:beef::/48;
allow 2a10:1234:abcd::1;
deny all;
satisfy all;