HTTP Debugger is an iOS app that acts as an HTTP CONNECT proxy server for developers and QA engineers. It allows you to debug HTTP/HTTPS traffic from your computer by routing it through your iOS device, which is useful for inspecting network requests and responses during development.
HTTP.Debugger+.New.iOS.App.MP4
- HTTP CONNECT Proxy Server - Runs on a configurable port (default: 10808)
- Real-time Traffic Inspection - Monitor TX/RX byte counts and connection status
- Connection Logging - View detailed logs of all HTTP connections
- Local IP Display - Shows the iOS device's WiFi IP address
- Keep Awake - Device stays awake while debugging
- Setup Guides - Built-in tutorial for Mac and Windows proxy configuration
- Settings - Configurable tutorial auto-show on startup
- Debug your app's HTTP traffic during iOS development
- Inspect HTTP headers and payloads from your computer's applications
- Test proxy configuration for your development environment
- Monitor network requests from development tools and CLIs
- Access enterprise internal network - Route HTTP/HTTPS traffic through your iOS device which is connected to corporate VPN, enabling your computer to reach internal resources that would otherwise be inaccessible
- iOS 17.0+
- Xcode 15.0+
xcodebuild -project HttpRelay.xcodeproj -scheme HttpRelay -configuration Debug -destination 'platform=iOS Simulator,name=iPhone 17 Pro' build- Open HTTP Debugger on your iOS device
- Toggle "Enable Proxy Server" to start
- Grant network permissions if prompted
- The server IP and port will be displayed
- Open System Settings → Network
- Select your network interface (Ethernet or Wi-Fi)
- Click "Details" button
- Select "Proxies" in the sidebar
- Scroll down to "HTTP Proxy" and "HTTPS Proxy"
- Enter the iOS device IP address and port (default: 10808)
- Click "OK" to apply
- Press Win + I to open Settings
- Go to Network & Internet → Proxy
- Under "Manual proxy setup", toggle "ON"
- Enter the server IP address and port (default: 10808)
- Settings are applied automatically
- TX - Total bytes sent to server
- RX - Total bytes received from server
- Logs - Real-time connection status with timestamps
| File | Description |
|---|---|
ProxyServer.swift |
HTTP CONNECT proxy server using NWListener |
TunnelManager.swift |
Manages bidirectional data forwarding |
LogStore.swift |
Central state management (@Observable) |
LogEntry.swift |
Log entry data model |
ContentView.swift |
Main SwiftUI interface |
TutorialView.swift |
Setup guide with screenshots |
SettingsView.swift |
App settings |
AboutView.swift |
App information |
Computer → ProxyServer → TunnelManager → Target Server
Computer ← ProxyServer ← TunnelManager ← Target Server
HttpRelay/
├── HttpRelayApp.swift # @main entry point
├── ContentView.swift # Main UI
├── ProxyServer.swift # HTTP CONNECT proxy
├── TunnelManager.swift # Connection bridging
├── LogStore.swift # State management
├── LogEntry.swift # Data model
├── TutorialView.swift # Setup guide
├── SettingsView.swift # Settings
├── AboutView.swift # About
└── Assets.xcassets/ # Images and icons
MIT License