2019-11-10 17:13:10 +01:00
|
|
|
mod_isolation: Isolate virtual hosts from each other
|
|
|
|
====================================================
|
|
|
|
|
|
|
|
The module blocks communication of users between different virtual hosts.
|
|
|
|
|
|
|
|
# Configuration
|
|
|
|
|
2023-05-15 11:56:18 +02:00
|
|
|
The module doesn't have any options, so the simplest way to configure is:
|
2019-11-10 17:13:10 +01:00
|
|
|
```yaml
|
|
|
|
modules:
|
|
|
|
mod_isolation: {}
|
|
|
|
```
|
|
|
|
|
|
|
|
Hint: if you also want to block whole s2s, use built-in ejabberd's `s2s_access` option:
|
|
|
|
```yaml
|
|
|
|
s2s_access: none
|
2022-08-12 10:52:20 +02:00
|
|
|
|
2019-11-10 17:13:10 +01:00
|
|
|
modules:
|
|
|
|
mod_isolation: {}
|
|
|
|
```
|