Fixes in paths of urls
This commit is contained in:
parent
02d6666ee6
commit
68f0b23a86
2 changed files with 9 additions and 8 deletions
|
|
@ -40,6 +40,10 @@ default_module="welcome"
|
|||
|
||||
modules=['paramecio.modules.welcome']
|
||||
|
||||
#The base url
|
||||
|
||||
base_url='/'
|
||||
|
||||
#Activate sessions?
|
||||
|
||||
session_enabled=True
|
||||
|
|
@ -68,6 +72,7 @@ session_opts = {
|
|||
|
||||
session_opts = {
|
||||
|
||||
'session.path': base_url,
|
||||
'session.key': cookie_name,
|
||||
'session.type': 'file',
|
||||
'session.data_dir': './sessions',
|
||||
|
|
@ -81,10 +86,6 @@ cache_session_opts = {
|
|||
|
||||
}
|
||||
|
||||
#The base url
|
||||
|
||||
base_url='/'
|
||||
|
||||
#Can be absolute or relative
|
||||
|
||||
media_url='/'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue