diff --git a/steering/sample_settings.py b/steering/sample_settings.py
index e0d02f4d77a26c5bd0594578b345ed0c710c9c1f..6f414bfaf9ebe09a83606ee842ce506c6c7ff8a7 100644
--- a/steering/sample_settings.py
+++ b/steering/sample_settings.py
@@ -1,9 +1,10 @@
-# sample settings for steering
+# Advanced settings for Steering
+# Go to https://docs.aura.radio to learn how to configure LDAP.
 
-from .settings import *  # noqa
-
-ADMINS = [("Ernesto", "ernesto@helsinki.at")]
-MANAGERS = ADMINS
-
-TIME_ZONE = "America/La_Paz"
+# import the base settings
+from steering.settings import *  # noqa
 
+# Import classes, functions, etc.
+from django_auth_ldap.config import GroupOfNamesType
+# and use them to extend or overwrite settings
+AUTH_LDAP_GROUP_TYPE = GroupOfNamesType(name_attr="cn")
\ No newline at end of file