2016-10-31 18:13:56 +01:00
|
|
|
# Realms in Zulip
|
|
|
|
|
2016-11-01 18:48:36 +01:00
|
|
|
Zulip allows multiple *realms* to be hosted on a single instance.
|
|
|
|
Realms are the Zulip codebases's internal name for what we refer to in
|
|
|
|
user documentation as an organization (the name "realm" comes from
|
2016-11-01 20:32:36 +01:00
|
|
|
[Kerberos](https://web.mit.edu/kerberos/)).
|
2016-10-31 18:13:56 +01:00
|
|
|
|
|
|
|
## Creating Realms
|
|
|
|
|
2016-11-01 18:48:36 +01:00
|
|
|
There are two main methods for creating realms.
|
2016-10-31 18:13:56 +01:00
|
|
|
|
|
|
|
* Using unique link generator
|
|
|
|
* Enabling open realm creation
|
|
|
|
|
|
|
|
#### Using Unique Link Generator
|
|
|
|
|
|
|
|
```bash
|
|
|
|
./manage.py generate_realm_creation_link
|
|
|
|
```
|
2016-11-01 18:48:36 +01:00
|
|
|
|
2017-01-15 05:13:22 +01:00
|
|
|
The above command will output a URL which can be used for creating a
|
2016-11-01 18:48:36 +01:00
|
|
|
new realm and an administrator user for that realm. The link expires
|
|
|
|
after the creation of the realm. The link also expires if not used
|
|
|
|
within 7 days. The expiration period can be changed by modifying
|
|
|
|
`REALM_CREATION_LINK_VALIDITY_DAYS` in settings.py.
|
2016-10-31 18:13:56 +01:00
|
|
|
|
|
|
|
### Enabling Open Realm Creation
|
|
|
|
|
2016-11-01 18:48:36 +01:00
|
|
|
If you want anyone to be able to create new realms on your server, you
|
|
|
|
can enable Open Realm Creation. This will add a **Create new
|
|
|
|
organization** link to your Zulip homepage footer, and anyone can
|
|
|
|
create a new realm by visiting this link (**/create_realm**). This
|
|
|
|
feature is disabled by default in production instances, and can be
|
|
|
|
enabled by setting `OPEN_REALM_CREATION = True` in settings.py.
|
2016-10-31 18:13:56 +01:00
|
|
|
|
|
|
|
## Subdomains
|
|
|
|
|
2017-10-03 00:33:16 +02:00
|
|
|
One can host multiple realms in a Zulip server by giving each realm a
|
|
|
|
unique subdomain of the main Zulip server's domain. For example, if
|
|
|
|
the Zulip instance is hosted at zulip.example.com, and the subdomain
|
|
|
|
of your organization is acme you can would acme.zulip.example.com for
|
|
|
|
accessing the organization.
|
|
|
|
|
|
|
|
For subdomains to work properly, you also have to change your DNS
|
|
|
|
records so that the subdomains point to your Zulip installation IP. An
|
|
|
|
`A` record with host name value `*` pointing to your IP should do the
|
|
|
|
job.
|
|
|
|
|
|
|
|
We also recommend upgrading to at least Zulip 1.7, since older Zulip
|
|
|
|
releases had much less nice handling for subdomains. See our
|
|
|
|
[docs on using subdomains](prod-multiple-organizations.html) for
|
|
|
|
user-facing documentation on this.
|
2016-10-31 18:13:56 +01:00
|
|
|
|
2017-01-15 05:13:22 +01:00
|
|
|
### Working With Subdomains In Development Environment
|
2016-10-31 18:13:56 +01:00
|
|
|
|
2016-11-01 18:48:36 +01:00
|
|
|
By default, Linux does not provide a convenient way to use subdomains
|
|
|
|
in your local development environment. To solve this problem, we use
|
|
|
|
the **zulipdev.com** domain, which has a wildcard A record pointing to
|
2017-10-03 00:33:16 +02:00
|
|
|
127.0.0.1. You can use zulipdev.com to connect to your Zulip
|
|
|
|
development server instead of localhost. The default realm with the
|
|
|
|
Shakespeare users has the subdomain `zulip` and can be accessed by
|
|
|
|
visiting **zulip.zulipdev.com**.
|
2016-11-01 18:48:36 +01:00
|
|
|
|
|
|
|
If you are behind a **proxy server**, this method won't work. When you
|
|
|
|
make a request to load zulipdev.com in your browser, the proxy server
|
|
|
|
will try to get the page on your behalf. Since zulipdev.com points
|
|
|
|
to 127.0.0.1 the proxy server is likely to give you a 503 error. The
|
|
|
|
workaround is to disable your proxy for `*.zulipdev.com`. The DNS
|
|
|
|
lookup should still work even if you disable proxy for
|
|
|
|
*.zulipdev.com. If it doesn't you can add zulipdev.com records in
|
|
|
|
`/etc/hosts` file. The file should look something like this.
|
2016-10-31 18:13:56 +01:00
|
|
|
|
|
|
|
```
|
|
|
|
127.0.0.1 localhost
|
|
|
|
|
|
|
|
127.0.0.1 zulipdev.com
|
|
|
|
|
|
|
|
127.0.0.1 zulip.zulipdev.com
|
|
|
|
|
|
|
|
127.0.0.1 testsubdomain.zulipdev.com
|
|
|
|
```
|
|
|
|
|
2016-11-01 18:48:36 +01:00
|
|
|
These records are also useful if you want to e.g. run the casper tests
|
|
|
|
when you are not connected to the Internet.
|