https://docs.velociraptor.app/docs/deployment/cloud/multifrontend/
---
## Exercise: Create a Master/Minion deployment
* Create a multi-frontend deployment running on the same host VM
* This allows the GUI to run on a separate process and allows unloaded
post processing/notebook operations.
* For our example:
* Configure the minion node to listen on port 8005 and
the master can remain on port 8000
* Start the master and minion frontends manually to see what is
happening:
```sh
velociraptor -v --config server.config.yaml frontend --minion --config.frontend-bind-port 8005
velociraptor -v --config server.config.yaml frontend
```
---
## Exercise: Customizing the dashboard
* When running multiple deployments or multiple orgs it is convenient
to customize the dashboard.
* Customize the dash board to add your name to the main page. This
helps identify your deployment.
---
## Server Lockdown Mode
* Velociraptor is an extremely powerful tool.
* A Velociraptor Server Admin account takeover can be very dangerous!
* But we still want to have it available so we can respond quickly.
* `Server Lockdown Mode` prevents Velociraptor from performing any
destructive actions while in lockdown!
Add the following to the `server.config.yaml` and restart the server
```
lockdown: true
```