-
Notifications
You must be signed in to change notification settings - Fork 0
GUI
The browser gui is the simplest way to configure the server, and the only way to view request/response logs (aside from 1 line logged to the console)
On opening the ui, you will be met with a list of your configured routes and a space to edit them. This is the route editor
page. Clicking on the Route Editor
button will navigate to this page.
Routes are listed on the left, each with an enabled
toggle that enables/disables that route, and a delete
button that permanently deletes the route when clicked. Clicking on the route will open the editor to change route properties
Important
Be sure when done editing to click the save button that shows up at the bottom right corner when there are changes
The url editor highlights path and query variables, making it easy to see which parts of the url are variable.
Routes with the passthrough
route type selected will show fewer options, and will forward the entire request to the redirect url
Clicking the Route Log
button navigates to the route log page. This contains a list of all requests made to the server since this ui page was opened up.
Each matched route generates a log that shows the http method, url, and http status code (when the response is returned).
Clicking on a log entry expands it to allow you to view the request and response information
Requests that did not match any configured route will show a log saying that no route was found
clicking on the trash can button at the bottom right will clear logs delivered to the browser