Browse Source

change the default self-signed certificate filenames

tags/v2.1.0-rc1
Shivaram Lingamneni 4 years ago
parent
commit
b09258b698
2 changed files with 8 additions and 8 deletions
  1. 4
    4
      conventional.yaml
  2. 4
    4
      oragono.yaml

+ 4
- 4
conventional.yaml View File

@@ -24,8 +24,8 @@ server:
24 24
         # The standard SSL/TLS port for IRC is 6697. This will listen on all interfaces:
25 25
         ":6697":
26 26
             tls:
27
-                key: tls.key
28
-                cert: tls.crt
27
+                cert: fullchain.pem
28
+                key: privkey.pem
29 29
                 # 'proxy' should typically be false. It's only for Kubernetes-style load
30 30
                 # balancing that does not terminate TLS, but sends an initial PROXY line
31 31
                 # in plaintext.
@@ -44,8 +44,8 @@ server:
44 44
         # ":8097":
45 45
         #     websocket: true
46 46
         #     tls:
47
-        #         key: tls.key
48
-        #         cert: tls.crt
47
+        #         cert: fullchain.pem
48
+        #         key: privkey.pem
49 49
 
50 50
     # sets the permissions for Unix listen sockets. on a typical Linux system,
51 51
     # the default is 0775 or 0755, which prevents other users/groups from connecting

+ 4
- 4
oragono.yaml View File

@@ -50,8 +50,8 @@ server:
50 50
         # The standard SSL/TLS port for IRC is 6697. This will listen on all interfaces:
51 51
         ":6697":
52 52
             tls:
53
-                key: tls.key
54
-                cert: tls.crt
53
+                cert: fullchain.pem
54
+                key: privkey.pem
55 55
                 # 'proxy' should typically be false. It's only for Kubernetes-style load
56 56
                 # balancing that does not terminate TLS, but sends an initial PROXY line
57 57
                 # in plaintext.
@@ -70,8 +70,8 @@ server:
70 70
         # ":8097":
71 71
         #     websocket: true
72 72
         #     tls:
73
-        #         key: tls.key
74
-        #         cert: tls.crt
73
+        #         cert: fullchain.pem
74
+        #         key: privkey.pem
75 75
 
76 76
     # sets the permissions for Unix listen sockets. on a typical Linux system,
77 77
     # the default is 0775 or 0755, which prevents other users/groups from connecting

Loading…
Cancel
Save