-
Notifications
You must be signed in to change notification settings - Fork 124
Home
Mitchell Hentges edited this page Jun 8, 2016
·
9 revisions
If you look at the footer, there's a section that will show you the state of the proxy:
shows that HTTPS is not working
means that everything is OK, including HTTPS
Two different ssl-related files are required: a "CA" key, and a "CA" certificate. For details why, see Hoxy's details here and here.
Assuming openssl
on your machine, run the following:
openssl genrsa -out root-ca.key.pem 2048
openssl req -x509 -new -nodes -key root-ca.key.pem -days 1024 -out root-ca.crt.pem -subj "/O=James Proxy Signing Authority"
Import root-ca.crt.pem
into each device/browser that proxies through James. Additionally, put the files in James' config
directory. This directory is different for each OS:
- Linux:
$HOME/.config/james/
- Mac:
$HOME/Library/Application Support/James/
- Windows:
%AppData%\james