aboutsummaryrefslogtreecommitdiffhomepage
path: root/vampire.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'vampire.lisp')
-rw-r--r--vampire.lisp3
1 files changed, 2 insertions, 1 deletions
diff --git a/vampire.lisp b/vampire.lisp
index b207c8a..185ec57 100644
--- a/vampire.lisp
+++ b/vampire.lisp
@@ -10,6 +10,7 @@
((datastore-directory :ir :std #P"/srv/vampire/store/")
(static-directory :ir :std #P"/srv/vampire/static/")
(swank-port :std nil :doc "If set, swank is started on this port.")
+ (host :std "0.0.0.0")
(port :ir :std 4919)
(downloader-threads :ir :std 5)))
@@ -48,7 +49,7 @@
(start-downloader-service config)
(clog:initialize 'main
:port (port config)
- :host "localhost"
+ :host (host config)
:extended-routing t
:static-root (static-directory config))
(set-on-new-window (when-logged-in? 'user-home-page) :path "/home")