Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 16 additions & 7 deletions apps/developer-docs/docs/self-hosting/methods/airgapped-edition.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,16 +66,25 @@ Consider these alternatives:
Edit the `plane.env` file to configure your deployment:

```bash
# Generate a unique machine signature
export MACHINE_SIGNATURE=$(uuidgen)

# Set your domain
export DOMAIN_NAME=plane.yourcompany.com
export WEB_URL=https://plane.yourcompany.com
export CORS_ALLOWED_ORIGINS=https://plane.yourcompany.com
export SITE_ADDRESS=https://plane.yourcompany.com
DOMAIN_NAME=plane.yourcompany.com
WEB_URL=https://plane.yourcompany.com
CORS_ALLOWED_ORIGINS=https://plane.yourcompany.com
SITE_ADDRESS=https://plane.yourcompany.com

# Paste the generated UUID here (see note below)
MACHINE_SIGNATURE=your-uuid-here
```

:::info
**Generating `MACHINE_SIGNATURE`:** Run the following command in your terminal to generate a unique UUID, then paste the output as the value of `MACHINE_SIGNATURE` in `plane.env`:

```bash
uuidgen
```

:::

**Update image references** in `docker-compose.yml` to point to your private registry:

```yaml
Expand Down
Loading