Common Problems
Last updated
Last updated
By default, Jet Bridge will run in HTTP mode while Jet Admin opens in HTTPS. This can lead to a similar error when trying to connect to Jet Bridge running under HTTP:
Mixed Content: The page at 'https://app.jetadmin.io/builder/...' was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint 'http://JET_BRIDGE_HOST/api/discover/connection/'. This request has been blocked; the content must be served over HTTPS.
You have several options how to fix this issue:
Run Jet Bridge in HTTPS mode using SSL_CERT
and SSL_KEY
options (see ). You will need an SSL certificate and private key for the domain name under which Jet Bridge is running. If you don't have an SSL certificate you can create self-signed SSL certificate files .crt
and .key
().
Run Jet Bridge behind a web server with HTTPS configured (for example nginx).
(for Test purposes) You can use Jet Admin in HTTP mode. We allow you to open your App in HTTP mode if you change HTTPS to HTTP in your browser URL. Be sure to connect to Jet Bridge with http:// on your browser URL otherwise, you will get a connection error.
For testing, you can use service to put your application on the internet via HTTPS
If you are deploying Jet Bridge behind a proxy or some webserver you can start receiving the following errors in your browser console:
Access to XMLHttpRequest at '...' from origin 'https://app.jetad.io.io' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource.
Normally you shouldn't have this issue as Jet Bridge automatically adds the appropriate CORS headers to all responses.
To fix the CORS issue for Nginx add the following to jetbridge.yourdomain.com.conf:
If you don't have a certificate for https you can use Let’s Encrypt. A free and open Certificate Authority (CA), provides an easy and automated way to obtain SSL certificates.
To install Certbot, follow these steps:
This is because newer versions of the Pillow Python library are incompatible with Python 3.4 or lower. Install an older version to fix this error:
This is because newer versions of the date parser Python library are incompatible with Python 3.4 or lower. Install an older version to fix this error:
The problem is that django-modeltranslation
patches Django models so you need to load jet_django
package only after django-modeltranslation
has finished its patching this way in your settings.py
: