You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the drop-down menu at the top, select Create Project.
Name your project and enable billing
Setup your compute engine instance:
Click "Get started" under "Try Compute Engine"
Wait for initialization to complete
Click "Create instance"
Check buttons to allow http and https traffic under "Firewall"
Use a new static IP address:
Click to expand "Management, disk, networking, access & security options"
Click to expand "Networking"
Under "External IP" choose new static IP address. Enter any name and click reserve
Click "Create"
Click "SSH" under the "Connect" column. Then see the section titled How to setup uProxy using SSH
How to setup uProxy using SSH
SSH into your machine. See above instructions for help with setting up a virtual machine on Google Compute Engine or Digital Ocean
Install and start the Quiver server by running curl https://raw.githubusercontent.com/uProxy/uproxy/master/install-quiver.sh | sh
This will install docker on your machine, run the uproxy/quiver docker image, and use port 80 (HTTP) for Quiver server traffic
Test your new IP address by visiting http://YourIPAddress. It should display a Hello; socket.io! page. You can find your IP address under "External IP" in the Google Cloud Platform console.
Logs for your Quiver server will be in your system logs with the "quiver" tag. To see the logs you can run grep quiver /var/log/syslog.
How to setup Amazon CloudFront for your Quiver server
Click CloudFront under "Storage & Content Delivery"
Click Create Distribution
Under "Web", click "Get Started"
Configure your distribution:
Under "Origin Settings":
Enter Origin Domain Name, e.g. "quiver-test.appspot.com". Note if you don't have a domain name, you can use xip.io, e.g. "123.234.345.456.xip.io"
Make sure "Origin Protocol Policy" is "HTTP Only" (Quiver server on GCE currently only supports HTTP traffic, however traffic to cloudfront will be encrypted and all data passed through the Quiver server is end-to-end encrypted by freedom-social-quiver client).
Use default values for all other fields in Origin Settings
Under "Default Cache Behavior Settings":
Set "Viewer Protocol Policy" to "HTTPS Only" (only allow secure traffic from client to CloudFront)
Set "Allowed HTTP Methods" to "GET, HEAD, OPTIONS, PUT, POST, PATCH, DELETE"
Set "Forward Headers" to "Whitelist"
Add the following 5 headers to "Whitelist Headers": Content-typeOriginUser-AgentX-DevTools-Emulate-Network-Conditions-Client-IdX-Session-Id
Set "Forward Cookies" to "All"
Set "Forward Query Strings" to "Yes"
All other fields can use the default values in "Default Cache Behavior Settings"
Use default settings for all fields in "Distribution Settings"
Click "Create Distribution"
Once your distribution is created, visit the "General" settings page for that distribution:
Wait for "Distribution Status" to be Deployed
Copy the Domain Name (e.g. d1j0v91oi5t6ys.cloudfront.net)
Once your new distribution is created and deployed, you can disguise traffic to the Quiver server by making HTTPS requests to "https://a0.awsstatic.com" and setting the "Host" header to your Domain Name (e.g. "d1j0v91oi5t6ys.cloudfront.net")