Skip to content

Commit 3a4a2b7

Browse files
committed
feat(docs): add DNSMasq info
1 parent 38fdb73 commit 3a4a2b7

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

docs/introduction/getting-started.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,31 @@
1515
That's it! Open the provided link and the public page should be shown. Add `/admin` to the URL to see the admin panel. The database is already migrated and seeded, and the test logins have already been set.
1616
1717
By doing these few steps you now have a functional Filament app with our Eclipse core package.
18+
19+
## DNS setup
20+
When using Lando for local development, the project domain will be hosted at a `*.lndo.site` subdomain.
21+
If you are happy not happy with this, or if for some reason this does not work for you (e.g. disabled [DNS rebinding](https://docs.lando.dev/help/dns-rebind.html)), we recommend you set up DNSMasq.
22+
### Linux
23+
1. Install it:
24+
- with dnf (Fedora, RHEL...)
25+
```shell
26+
sudo dnf install dnsmasq
27+
```
28+
- with apt (Ubuntu, Debian...)
29+
```shell
30+
sudo apt install dnsmasq
31+
```
32+
33+
2. Configure it:
34+
35+
Add `address=/lndo.site/127.0.0.1` to `/etc/dnsmasq.d/lando.conf`.
36+
37+
3. Enable it:
38+
```shell
39+
sudo systemctl enable --now dnsmasq
40+
```
41+
42+
### Mac
43+
See the Lando guide [here](https://docs.lando.dev/guides/offline-dev.html).
44+
45+

0 commit comments

Comments
 (0)