diff options
Diffstat (limited to 'ipa-server/ipa-gui/dev.cfg')
-rw-r--r-- | ipa-server/ipa-gui/dev.cfg | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/ipa-server/ipa-gui/dev.cfg b/ipa-server/ipa-gui/dev.cfg index 7bb0fd8c..7cc2441d 100644 --- a/ipa-server/ipa-gui/dev.cfg +++ b/ipa-server/ipa-gui/dev.cfg @@ -13,8 +13,19 @@ # If you have sqlite, here's a simple default to get you started # in development -sqlobject.dburi="sqlite://%(current_dir_uri)s/devdata.sqlite" +# sqlobject.dburi="sqlite://%(current_dir_uri)s/devdata.sqlite" +# Our our sqlobject-derived proxy provider +identity.provider='proxyprovider' + +# the first thing checked on any request. We want to short-circuit this +# as early as possible +identity.source = 'visit' + +# Turn on identity and visit (visit is required for identity) +identity.on=True +visit.on=True +visit.manager='proxyvisit' # if you are using a database or table type without transactions # (MySQL default, for example), you should turn off transactions |