First need to create an existing app, which uses the apache configuration
```
git checkout master
nix develop # optional, if legacy dev env already applied
# In one terminal
cd keyserver
yarn dev
# In another terminal
cd native
yarn dev
# Run follwoing command in another terminal
yarn react-native run-ios --simulator='iPhone 14 Pro' --configuration=Debug
# Should be able to do normal iOS Dev workflow:
# No "DISCONNECTED" bar appears, able to create chat threads
# Profile > Developer tools, should show http://localhost/comm
# Go to home screen, and delete existing app in simulator (Hold down on Comm app, then select "Remove App")```
{F290268}
# to ensure configuration was re-applied next clean startNext, we need apply url-utils changes:
# Do ctrl+c to stop previous `yarn react-native run-ios````
arc patch D5846
# Keyserver should apply the migration
yarn react-native run-ios --simulator='iPhone 14 Pro' --configuration=Debug
# Should be able to do normal iOS Dev workflow:
# No "DISCONNECTED" bar appears, able to create chat threads
# Profile > Developer tools, should show http://localhost:3000/comm
```
{F279998}{F290313}