mirror of
https://git.freebsd.org/ports.git
synced 2025-05-04 23:47:37 -04:00
A simple selfhosted message service with nice UI and a client for Android. Thanks a lot for help I received here: https://github.com/gotify/server/issues/199
11 lines
407 B
Go
11 lines
407 B
Go
--- config/config.go.orig 2024-10-11 14:37:05 UTC
|
|
+++ config/config.go
|
|
@@ -60,7 +60,7 @@ func configFiles() []string {
|
|
if mode.Get() == mode.TestDev {
|
|
return []string{"config.yml"}
|
|
}
|
|
- return []string{"config.yml", "/etc/gotify/config.yml"}
|
|
+ return []string{"config.yml", "/usr/local/etc/gotify-server/config.yml"}
|
|
}
|
|
|
|
// Get returns the configuration extracted from env variables or config file.
|