https://github.com/rack-app/server
Rack::App server command implementation
https://github.com/rack-app/server
Last synced: 4 months ago
JSON representation
Rack::App server command implementation
- Host: GitHub
- URL: https://github.com/rack-app/server
- Owner: rack-app
- Created: 2017-12-04T06:59:02.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-03-18T19:11:28.000Z (over 8 years ago)
- Last Synced: 2024-12-31T08:47:15.456Z (over 1 year ago)
- Language: Go
- Size: 2.12 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Project Turtle
## HTTP CONNECT tunneling
Suppose client wants to use either HTTPS or WebSockets in order to talk to server. Client is aware of using proxy. Simple HTTP request / response flow cannot be used since client needs to e.g. establish secure connection with server (HTTPS) or wants to use other protocol over TCP connection (WebSockets). Technique which works is to use HTTP CONNECT method. It tells the proxy server to establish TCP connection with destination server and when done to proxy the TCP stream to and from the client. This way proxy server won’t terminate SSL but will simply pass data between client and destination server so these two parties can establish secure connection.
