Codux Help Center
Browse our articles to find the answers you need
Configuring Proxy Servers for Codux
The
serverProxyMap
key in Codux is responsible for managing the redirection of requests to proxy servers. This can be particularly useful when you need to create an instance of a proxy server for using API routes. Once set up, Codux will redirect requests from a specified path (the key of the object) to a designated URL (the value of the object).Here's an example of how to use
serverProxyMap
in codux.config.json. In this case, Codux is set up to proxy all requests from the project root to a server on localhost:1 2 3 4 5 6 7
{ "$schema": "http://wixplosives.github.io/codux-config-schema/codux.config.schema.json", ... "serverProxyMap": { "/": "http://localhost:3000" } }
This configuration means that any request made to the root of the project ("/") will be redirected to "http://localhost:3000".
Was this article helpful?