Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.rockxy.io/llms.txt

Use this file to discover all available pages before exploring further.

Map Remote

Map Remote rewrites where a request goes without requiring the original client to change its configured base URL.

Use Map Remote when

  • you want production-shaped traffic to hit staging,
  • you need to send one endpoint to a local development server,
  • you are testing a new API version behind the same client,
  • or you need to redirect a CDN or service dependency temporarily.

Common patterns

Swap only the host

Useful when the path and query are already correct but the environment is wrong.

Swap the path

Useful when you want to test a new route while keeping the same host and authentication context.

Swap protocol or port

Useful when you are sending traffic to a local service or test environment with a different transport shape.

Practical advice

Start with the smallest rewrite that proves the behavior change you want. If changing only the host works, do not rewrite path and query too.

Map Local

Use a local file when you do not need a real upstream server at all.

Request Replay

Replay the same request after applying the rewrite to verify the result quickly.