summarylogtreecommitdiffstats
path: root/path.patch
blob: 08f8623ac031dafb2ba0d7a8065241ea12dc69d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
From 4f96b050a45a79741fa045499ec172f865142ceb Mon Sep 17 00:00:00 2001
From: Jason Papakostas <vithos@gmail.com>
Date: Mon, 9 Mar 2020 06:06:14 -0500
Subject: [PATCH] config: default paths for arch linux package

---
 oragono.yaml | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/oragono.yaml b/oragono.yaml
index 5733d56..f37d5cc 100644
--- a/oragono.yaml
+++ b/oragono.yaml
@@ -28,8 +28,8 @@ server:
         # The standard SSL/TLS port for IRC is 6697. This will listen on all interfaces:
         ":6697":
             tls:
-                key: tls.key
-                cert: tls.crt
+                key: /var/lib/oragono/tls.key
+                cert: /var/lib/oragono/tls.crt
                 # 'proxy' should typically be false. It's only for Kubernetes-style load
                 # balancing that does not terminate TLS, but sends an initial PROXY line
                 # in plaintext.
@@ -114,7 +114,7 @@ server:
 
     # motd filename
     # if you change the motd, you should move it to ircd.motd
-    motd: oragono.motd
+    motd: /var/lib/oragono/ircd.motd
 
     # motd formatting codes
     # if this is true, the motd is escaped using formatting codes like $c, $b, and $i
@@ -593,7 +593,7 @@ debug:
 # datastore configuration
 datastore:
     # path to the datastore
-    path: ircd.db
+    path: /var/lib/oragono/ircd.db
 
     # if the database schema requires an upgrade, `autoupgrade` will attempt to
     # perform it automatically on startup. the database will be backed
@@ -621,7 +621,7 @@ languages:
     default: en
 
     # which directory contains our language files
-    path: languages
+    path: /usr/share/oragono/i18n/
 
 # limits - these need to be the same across the network
 limits:
-- 
2.25.1