Bubble proxy service
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
Jonathan Cobb c2720771bc adjust logging pirms 4 gadiem
img WIP. add windows build instructions, try whoami instead of users (not supported on windows) pirms 4 gadiem
src adjust logging pirms 4 gadiem
.gitignore make set_version.sh work on mac pirms 4 gadiem
BUILD-windows.md WIP. add windows build instructions, try whoami instead of users (not supported on windows) pirms 4 gadiem
Cargo.lock remove pnet, causes problems on windows pirms 4 gadiem
Cargo.toml remove pnet, causes problems on windows pirms 4 gadiem
README.md update README, fix auth_token documentation pirms 4 gadiem
first_time_ubuntu.sh initial commit pirms 4 gadiem
set_version.sh remove unneeded escape pirms 4 gadiem

README.md

bubble-flexrouter

bubble-flexrouter provides HTTP/HTTPS proxy services for Bubble.

Some websites and apps refuse to respond to requests originating from a cloud IP address. Thus, when a user is connected to their Bubble, some sites and apps will not work.

With flex routing, Bubble can route these requests through a device connected to the Bubble that is running bubble-flexrouter. Now, from the perspective of the website or app, these requests will originate from a “clean” IP, and so a valid response will be sent.

Note that using flex routing does remove some privacy protection - sites and apps that are flex-routed will see one of your device’s real IP addresses.

Installation

There are a few steps to installation:

  • Generate the flex-router password
  • Create an SSH key pair
  • Create an auth token file
  • Install system service

Generate the bubble-flexrouter password

During installation, choose a password for the service. It should be random and at least 30 characters long.

Store this password in securely someplace where the app can read it. Ideally this is not on the filesystem, but in some internal app storage mechanism, since it will be stored in plaintext.

Bcrypt the password (use 12 rounds) and store the bcrypted value in a file. This file should only be readable by the bubble-flexrouter system service.

Create an SSH key pair

During installation, generate an RSA key pair:

ssh-keygen -t rsa -f /some/secure/location

In the above, /some/secure/location should be a path that is only readable by the bubble-flexrouter system service.

When this step is done, /some/secure/location should be the path to the SSH private key and /some/secure/location.pub should be the path to the SSH public key.

Create an auth token file

bubble-flexrouter uses an auth token to secure its connection to a Bubble.

During installation, write a random token to a file. This token must be at least 50 characters long. After writing the file, ensure that it is only readable by the bubble-flexrouter service.

Install system service

Install bubble-flexrouter as a system service (Windows Service or Mac OS launch daemon) during Bubble app installation.

It should always be running. Set it to run at system startup.

The service requires some environment variables to be set:

  • BUBBLE_FR_SSH_KEY - full path to the private SSH key
  • BUBBLE_FR_PASS - full path to the bcrypted password file
  • BUBBLE_FR_TOKEN - full path to the auth token file

Run the service with these environment variables set.

Uncommon configuration

By default bubble-flexrouter will listen on 127.0.0.1 on ports 9823 and 9833.

If these ports are unavailable, you can change them with command line arguments to bubble-flexrouter.

Run bubble-flexrouter --help to see the full list of command line options. Usually you will not need to set any arguments.

Registering

When a user successfully logs in to a Bubble node, the API response will include a session token. Use this token and the bubble-flexrouter password to register the flexrouter with the Bubble.

To register the flexrouter with the Bubble, send a registration request to the admin port, listening on 127.0.0.1:9833

This request must include the request header Content-Type: application/json

POST http://127.0.0.1:9833/register
{
  "password": "<password>",
  "session": "<session-token>",
  "bubble": "<bubble-hostname>",
  "ip": "<client-vpn-ip>"
}

Where:

  • <password> is the bubble-flexrouter password that was generated during installation
  • <session-token> is the session token returned when the used logged in (usually from the auth/login API call)
  • <bubble-hostname> is the hostname of the Bubble that the app has connected to
  • <client-vpn-ip> is the VPN IP address that was assigned to the device (usually starts with 10.)

A successful registration request will return HTTP status 200. Any other response indicates a failure, and the response body will contain a plaintext string with an error message.

An example using curl:

curl -H 'Content-Type: application/json' \
     -d '{"password":"Uy6dDwNP5msid3P6QEpeVmQMuUiAda","session":"47cc4974-2eca-47d8-8c74-c2cc106b9ba8","bubble":"nexus-dr66b-wn85d-ux27e.bubv.net","ip":"10.19.49.12"}' \
     http://127.0.0.1:9833/register

Unregistering

When a user logs out of a Bubble node, unregister the flexrouter by sending a request to the admin port.

This request must include the request header Content-Type: application/json

POST http://127.0.0.1:9833/unregister
{
  "password": "<password>"
}

Where:

  • <password> is the bubble-flexrouter password that was generated during installation

A successful unregister request will return HTTP status 200. Any other response indicates a failure, and the response body will contain a plaintext string with an error message.

An example using curl:

curl -H 'Content-Type: application/json' \
     -d '{"password":"Uy6dDwNP5msid3P6QEpeVmQMuUiAda"}' \
     http://127.0.0.1:9833/unregister

Uninstallation

If the Bubble app is uninstalled from the system, then also:

  • Stop and remove the system service
  • Remove the bcrypted password file
  • Remove both files of the SSH key pair
  • Remove the auth token file