summaryrefslogtreecommitdiff
path: root/src/config.clj
diff options
context:
space:
mode:
authoryo momma <shutup@oops.wtf>2026-02-04 13:40:27 +0000
committeryo momma <shutup@oops.wtf>2026-02-04 13:40:27 +0000
commit120b42a2305c0a01069c8268aa9a2866923cb9ea (patch)
tree342ccf0ef10d97d4277d698aef8d46bd976dcd24 /src/config.clj
parent079fa651299418f8fed63f0d2bdb7e05abbec01a (diff)
Hump.fm: remove remaining dumpfm attributions
Diffstat (limited to 'src/config.clj')
-rwxr-xr-xsrc/config.clj8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/config.clj b/src/config.clj
index 5fd18ba..bec5768 100755
--- a/src/config.clj
+++ b/src/config.clj
@@ -26,7 +26,7 @@
(def *server-url*
(getenv "DUMPFM_SERVER_URL"
- (if (= *server-user* "dumpfmprod")
+ (if (= *server-user* "humpfmprod")
"/"
"http://localhost:8080")))
@@ -44,7 +44,7 @@
(def *cookie-domain*
(getenv "DUMPFM_COOKIE_DOMAIN"
- (if (= *server-user* "dumpfmprod")
+ (if (= *server-user* "humpfmprod")
".hump.fm"
"")))
@@ -53,13 +53,13 @@
(def db-server
(getenv "DUMPFM_DB_HOST"
- (if (= *server-user* "dumpfmprod")
+ (if (= *server-user* "humpfmprod")
"localhost"; "192.168.162.138"
"localhost")))
(def redis-server
{:host (getenv "DUMPFM_REDIS_HOST"
- (if (= *server-user* "dumpfmprod")
+ (if (= *server-user* "humpfmprod")
"127.0.0.1"
"127.0.0.1"))
:port (getenv-int "DUMPFM_REDIS_PORT" 6379)