diff --git a/intranet/Root.py b/intranet/Root.py index 5919f4a7..24a2025e 100755 --- a/intranet/Root.py +++ b/intranet/Root.py @@ -122,11 +122,11 @@ parser.add_option("-d", "--dev", # mise en place de cherrypy + conf # -cherrypy.config.update(file="/usr/scripts/intranet/intranet.cfg") +cherrypy.config.update(file="/usr/scripts/intranet/conf/intranet.cfg") if (options.dev): - cherrypy.config.update(file="/usr/scripts/intranet/dev.cfg") + cherrypy.config.update(file="/usr/scripts/intranet/conf/dev.cfg") else: - cherrypy.config.update(file="/usr/scripts/intranet/prod.cfg") + cherrypy.config.update(file="/usr/scripts/intranet/conf/prod.cfg") settings={'/': { diff --git a/intranet/dev.cfg b/intranet/conf/dev.cfg similarity index 100% rename from intranet/dev.cfg rename to intranet/conf/dev.cfg diff --git a/intranet/intranet.cfg b/intranet/conf/intranet.cfg similarity index 100% rename from intranet/intranet.cfg rename to intranet/conf/intranet.cfg diff --git a/intranet/prod.cfg b/intranet/conf/prod.cfg similarity index 100% rename from intranet/prod.cfg rename to intranet/conf/prod.cfg