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
Copy file name to clipboardExpand all lines: docs/hosting/configuration/configuration-examples/custom-certificate-authority.md
+33-3Lines changed: 33 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,11 +9,11 @@ contentType: howto
9
9
10
10
You can add your own certificate authority (CA) or self-signed certificate to n8n. This means you are able to trust a certain SSL certificate instead of trusting all invalid certificates, which is a potential security risk.
11
11
12
-
/// note | Available in version 1.42.0
13
-
This feature is only available in version 1.42.0+.
12
+
/// note | Added in version 1.42.0
13
+
This feature is available in version 1.42.0 and above.
14
14
///
15
15
16
-
To use this feature you need to place your certificates in a folder and mount the folder to `/opt/custom-certificates` in the container.
16
+
To use this feature you need to place your certificates in a folder and mount the folder to `/opt/custom-certificates` in the container. The external path that you map to `/opt/custom-certificates` must be writable by the container.
17
17
18
18
## Docker
19
19
@@ -49,3 +49,33 @@ You should also give the right permissions to the imported certs. You can do thi
## Certificate requirements for Custom Trust Store
54
+
55
+
Supported certificate types:
56
+
57
+
- Root CA Certificates: these are certificates from Certificate Authorities that sign other certificates. Trust these to accept all certificates signed by that CA.
58
+
- Self-Signed Certificates: certificates that servers create and sign themselves. Trust these to accept connections to that specific server only.
0 commit comments