author | Timm S. Mueller <tmueller@neoscientists.org> |
Sun, 29 Apr 2007 14:29:44 +0200 | |
changeset 184 | d6dab49fa14a |
parent 173 | 53449b31e386 |
child 198 | 87a4de7c7457 |
permissions | -rw-r--r-- |
tmueller@0 | 1 |
------------------------------------------------------------------------------- |
tmueller@0 | 2 |
-- |
tmueller@0 | 3 |
-- etc/config.lua - Loona Configuration file |
root@2 | 4 |
-- |
root@2 | 5 |
-- Uncomment settings to change their respective defaults, |
root@2 | 6 |
-- which are denoted below. |
root@2 | 7 |
-- |
root@2 | 8 |
-- You can use absolute or relative paths. By default, the application |
root@2 | 9 |
-- is intended to work 'out of the box' from the cgi-bin/ directory |
root@2 | 10 |
-- without further installation, hence the relative paths. |
tmueller@0 | 11 |
-- |
tmueller@0 | 12 |
------------------------------------------------------------------------------- |
tmueller@0 | 13 |
|
root@2 | 14 |
-- Password file -------------------------------------------------------------- |
tmueller@0 | 15 |
-- passwdfile = "../etc/passwd.lua"; |
tmueller@0 | 16 |
|
root@2 | 17 |
-- Session directory ---------------------------------------------------------- |
tmueller@0 | 18 |
-- sessiondir = "../var/sessions"; |
tmueller@0 | 19 |
|
tmueller@131 | 20 |
-- html cache directory ------------------------------------------------------- |
tmueller@131 | 21 |
-- htmlcachedir = "../var/htmlcache"; |
tmueller@131 | 22 |
|
root@2 | 23 |
-- Extensions directory ------------------------------------------------------- |
tmueller@0 | 24 |
-- extdir = "../extensions"; |
tmueller@0 | 25 |
|
root@2 | 26 |
-- Content directory ---------------------------------------------------------- |
tmueller@0 | 27 |
-- contentdir = "../content"; |
tmueller@0 | 28 |
|
root@2 | 29 |
-- Locale directory ----------------------------------------------------------- |
tmueller@0 | 30 |
-- localedir = "../locale"; |
tmueller@0 | 31 |
|
tmueller@129 | 32 |
-- htdocs directory ----------------------------------------------------------- |
tmueller@129 | 33 |
-- htdocsdir = "../htdocs"; |
tmueller@0 | 34 |
|
tmueller@129 | 35 |
-- Default/fallback section path. Must not be "index" ------------------------- |
tmueller@0 | 36 |
-- defname = "home"; |
tmueller@0 | 37 |
|
root@2 | 38 |
-- Default language ----------------------------------------------------------- |
root@2 | 39 |
-- deflang = "en"; |
tmueller@0 | 40 |
|
root@2 | 41 |
-- Max age of a session [seconds] --------------------------------------------- |
tmueller@173 | 42 |
-- sessionmaxage = 6000; |
tmueller@0 | 43 |
|
root@2 | 44 |
-- Portnumber considered to be secure ----------------------------------------- |
root@2 | 45 |
-- secureport = 443; |
root@2 | 46 |
|
tmueller@122 | 47 |
-- Open external links in same window ----------------------------------------- |
tmueller@122 | 48 |
-- extlinksamewindow = false; |
tmueller@122 | 49 |