Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion copilot.el
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,14 @@
(defcustom copilot-network-proxy nil
"Network proxy to use for Copilot. Nil means no proxy.
Format: '(:host \"127.0.0.1\" :port 80 :username \"username\" :password \"password\")
Username and password are optional."
Username and password are optional.

If you are using a MITM proxy which intercepts TLS connections, you may need to disable
TLS verification. This can be done by setting a pair ':rejectUnauthorized :json-false'
in the proxy plist. For example:

(:host \"127.0.0.1\" :port 80 :rejectUnauthorized :json-false)
"
:type '(plist :tag "Uncheck all to disable proxy" :key-type symbol)
:options '((:host string) (:port integer) (:username string) (:password string))
:group 'copilot)
Expand Down