diff --git a/src/leap/soledad/server/entrypoints.py b/src/leap/soledad/server/entrypoints.py
index 9bccbcf492ffe2e46bf383bc39062c0ba905cd82..fa8c3ff2a18a5ddfeaece05c527c8f9876e2e3e7 100644
--- a/src/leap/soledad/server/entrypoints.py
+++ b/src/leap/soledad/server/entrypoints.py
@@ -15,10 +15,7 @@
 # You should have received a copy of the GNU General Public License
 # along with this program. If not, see <http://www.gnu.org/licenses/>.
 """
-The entrypoint for Soledad server.
-
-This is the entrypoint for the application that is loaded from the initscript
-or the systemd script.
+Entrypoints for the Soledad server.
 """
 import os
 
@@ -33,12 +30,11 @@ from ._config import get_config
 from ._wsgi import init_couch_state
 
 
-# load configuration from file
 conf = get_config()
 log = Logger()
 
 
-class SoledadEntrypoint(SoledadSession):
+class UsersEntrypoint(SoledadSession):
 
     def __init__(self):
         pool = threadpool.ThreadPool(name='wsgi')
@@ -48,15 +44,12 @@ class SoledadEntrypoint(SoledadSession):
         SoledadSession.__init__(self, portal)
 
 
-class LocalServicesEntrypoint(SoledadSession):
+class ServicesEntrypoint(SoledadSession):
 
     def __init__(self):
         portal = localPortal()
         SoledadSession.__init__(self, portal)
 
-# see the comments in _wsgi.py recarding why couch state has to be
-# initialized when the reactor is running
-
 
 def check_conf():
     path = conf['blobs_path']
@@ -75,4 +68,6 @@ def check_conf():
 
 reactor.callWhenRunning(check_conf)
 reactor.callWhenRunning(check_schema_versions, conf['couch_url'])
+# see the comments in _wsgi.py regarding why couch state has to be
+# initialized when the reactor is running
 reactor.callWhenRunning(init_couch_state, conf)
diff --git a/src/leap/soledad/server/server.tac b/src/leap/soledad/server/server.tac
index 1a4e53ee684ba5547668bb89181e87d328380d13..efaca790d2bea90a8cc348b4b37fef377f7f4a5d 100644
--- a/src/leap/soledad/server/server.tac
+++ b/src/leap/soledad/server/server.tac
@@ -12,7 +12,7 @@ application = service.Application('soledad-server')
 # local entrypoint
 local_port = os.getenv('LOCAL_SERVICES_PORT', 2525)
 local_description = 'tcp:%s:interface=127.0.0.1' % local_port
-local_site = server.Site(entrypoints.LocalServicesEntrypoint())
+local_site = server.Site(entrypoints.ServicesEntrypoint())
 
 local_server = strports.service(local_description, local_site)
 local_server.setServiceParent(application)
@@ -39,7 +39,7 @@ else:
     log.err("HTTPS_PORT env var is required to be set!")
     sys.exit(20)
 
-public_site = server.Site(entrypoints.SoledadEntrypoint())
+public_site = server.Site(entrypoints.UsersEntrypoint())
 
 public_server = strports.service(public_description, public_site)
 public_server.setServiceParent(application)
diff --git a/tests/conftest.py b/tests/conftest.py
index 2bfea3d50c2f69c8beafa0023cf1f7a0a9a0e57a..59cce97e28730afc5ad0c18c95ef1eefbd222d6c 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -200,7 +200,7 @@ class SoledadServer(object):
             '--logfile=%s' % self._logfile,
             '--pidfile=%s' % self._pidfile,
             'web',
-            '--class=leap.soledad.server.entrypoints.SoledadEntrypoint',
+            '--class=leap.soledad.server.entrypoints.UsersEntrypoint',
             '--port=tcp:2424'
         ])