For AI agents: the complete documentation index is available at /llms.txt, the full documentation bundle is available at /llms-full.txt, and this page is available as Markdown at /api/rspeedy.server.host.md.
This is the dev preview website. Check out the document at lynxjs.org

Home > @lynx-js/rspeedy > Server > host

Server.host property

Specify the host that the Rspeedy Server listens to.

Signature:

host?: string | undefined;

Default Value

"0.0.0.0"

Remarks

During rspeedy dev, if server.host is unset, the dev plugin keeps the server bound to the IPv4 wildcard address while resolving dev-server-related URLs and client host settings with a detected non-loopback IPv4 address, such as 192.168.1.50. If no eligible IPv4 address exists, it binds to the IPv6 wildcard address and uses a detected IPv6 address for URLs. It falls back to an IPv4 loopback URL when no non-loopback IP is available. If you have multiple network interfaces, set server.host explicitly to choose the desired address.

Example

Set the host to a custom value:

import { defineConfig } from '@lynx-js/rspeedy'
export default defineConfig({
  server: {
    host: "192.168.1.50",
  },
})