summaryrefslogtreecommitdiff
path: root/src/config.clj
diff options
context:
space:
mode:
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)