Skip to content
This repository was archived by the owner on Aug 18, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions workspaces/devurls.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,3 +97,14 @@ $ curl --cookie "devurl_session=<TOKEN>" <dev-url>

You can also access your server via
[SSH port forwarding](ssh.md#forwarding-dev-urls).

## Troubleshooting

If you're seeing issues with your dev URL, we recommend using something like
Python's `http.server` module to gain additional information helpful for
troubleshooting issues with DevURL configuration and external proxies:

```console
# update the following with the port you're troubleshooting
python3 -m http.server 8080
```