diff --git a/fpco-api.cabal b/fpco-api.cabal
--- a/fpco-api.cabal
+++ b/fpco-api.cabal
@@ -1,5 +1,5 @@
 name:                 fpco-api
-version:              1.0.2
+version:              1.0.3
 synopsis:             Simple interface to the FP Complete IDE API.
 description:          A server and library for communicating with the FP Complete IDE API.
 homepage:             https://www.fpcomplete.com/page/api
diff --git a/src/library/FP/Server/Types.hs b/src/library/FP/Server/Types.hs
--- a/src/library/FP/Server/Types.hs
+++ b/src/library/FP/Server/Types.hs
@@ -12,6 +12,7 @@
 
 import FP.API.Run
 import FP.API.Types
+import FP.Server.Config
 
 import Control.Concurrent (MVar)
 import Control.Monad.Logger
@@ -60,7 +61,7 @@
   } deriving (Show)
 
 instance Default Config where
-  def = Config "" "https://fpcomplete.com" 1990 "fpco-api" True False
+  def = Config "" defaultUrl defaultPort "fpco-api" True False
 
 -- | Message from the client.
 data Msg = MsgSaveModule FayProjectId FilePath FilePath
