summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLV-426 <lv-426@taproot.org.il>2015-05-10 21:42:51 +0300
committerLV-426 <lv-426@taproot.org.il>2015-05-12 14:59:07 +0300
commit9bf0c2f057618b5cc7d53a45c7ed24a18bda554a (patch)
tree527241675fd84c576b9a6f45b884abd77cd2055d /src
parent83e3932c835c32d921dca90496d920fb8036793c (diff)
rz_config: fragment_d_path, template_d_path defaults
Diffstat (limited to 'src')
-rw-r--r--src/server/rz_config.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/server/rz_config.py b/src/server/rz_config.py
index 09409726..03012048 100644
--- a/src/server/rz_config.py
+++ b/src/server/rz_config.py
@@ -39,11 +39,12 @@ class RZ_Config(object):
# - root_path: path to server root - relative paths are converted to absolute
# default: current working dir
# - user_db_path: user_db path - relative paths are converted to absolute
- # - template_d_relpath: root_path relative location of template dir
+ # - template_d_path: root_path relative location of template dir
#
- cfg['root_path'] = os.getcwd()
+ cfg['root_path'] = '.'
cfg['user_db_path'] = './user_db.db'
- cfg['template_d_relpath'] = 'fragment.d/template.d'
+ cfg['fragment_d_path'] = '/static/fragment.d'
+ cfg['template_d_path'] = '/static/fragment.d/template.d'
# client configuration
cfg['optimized_main'] = False