Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

Overview

Since build 5.2.792 it is possible to restrict allow Websocket client connections by certain domain or domains list with the following parameter in flashphoner.properties file

...

Code Block
themeRDark
allow_domains=*.mydomain.com,*.myotherdomain.com

...

The changes can be applied without restarting the server using CLI command

Code Block
themeRDark
reload node-settings

Connection restriction from certain domains

Since build 5.2.971 it is possible to restrict Websocket connections from certain domains. For example, to forbid connections from one domain, but allow connections from all the other domains, set the restrictions list as follows

Code Block
themeRDark
allow_domains=!*.evildomain.com,*

Using the setting on CDN node

When using this parameter on CDN node, the CDN IP address of this node should be set in this list. For example, if node CDN IP is

Code Block
themeRDark
cdn_ip=192.168.111.101

then this address should be added to allowed domains list

Code Block
themeRDark
allow_domains=*.mydomain.com,*.myotherdomain.com,192.168.111.101,192.168.111.102,192.168.112.1

The changes can be applied without restarting the server using CLI command

Code Block
themeRDark
reload node-settings