Changeset 7713 for main/waeup.sirp/branches/ulif-groktoolkit-1.4/etc
- Timestamp:
- 28 Feb 2012, 10:14:55 (13 years ago)
- Location:
- main/waeup.sirp/branches/ulif-groktoolkit-1.4/etc
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/branches/ulif-groktoolkit-1.4/etc/debug.ini.in
r5677 r7713 1 # debug.ini 2 # 3 # Debugging configuration for use with paster/WSGI 4 # 5 6 [loggers] 7 keys = root, wsgi 8 9 [handlers] 10 keys = console, accesslog 11 12 [formatters] 13 keys = generic, accesslog 14 15 [formatter_generic] 16 format = %(asctime)s %(levelname)s [%(name)s] %(message)s 17 18 [formatter_accesslog] 19 format = %(message)s 20 21 [handler_console] 22 class = StreamHandler 23 args = (sys.stderr,) 24 level = NOTSET 25 formatter = generic 26 27 [handler_accesslog] 28 class = FileHandler 29 args = (os.path.join(r'${zope_conf:logfiles}', 'access.log'), 30 'a') 31 level = INFO 32 formatter = accesslog 33 34 [logger_root] 35 level = INFO 36 handlers = console 37 38 [logger_wsgi] 39 level = INFO 40 handlers = accesslog 41 qualname = wsgi 42 propagate = 0 43 44 [filter:translogger] 45 use = egg:Paste#translogger 46 setup_console_handler = False 47 logger_name = wsgi 48 49 [filter-app:main] 50 # Change the last part from 'ajax' to 'pdb' for a post-mortem debugger 51 # on the console: 52 use = egg:z3c.evalexception#ajax 53 next = zope 54 55 [app:zope] 56 use = egg:waeup.sirp#debug 57 filter-with = translogger 58 exempt-exceptions = zope.security.interfaces.IUnauthorized 1 [DEFAULT] 2 zope_conf = %(here)s/zope.conf 59 3 60 4 [server:main] … … 63 7 port = 8080 64 8 65 [DEFAULT] 66 # set the name of the zope.conf file 67 zope_conf = %(here)s/zope.conf 9 [pipeline:main] 10 pipeline = accesslogging evalexception fanstatic grok 11 12 [filter:accesslogging] 13 use = egg:Paste#translogger 14 15 [filter:evalexception] 16 use = egg:z3c.evalexception#ajax 17 18 [filter:fanstatic] 19 use = egg:fanstatic#fanstatic 20 versioning = true 21 recompute_hashes = true 22 23 [app:grok] 24 use = egg:grokcore.startup#debug 25 exempt-exceptions = zope.security.interfaces.IUnauthorized 26 27 # Logging configuration 28 29 [loggers] 30 keys = root 31 32 [logger_root] 33 level = DEBUG 34 handlers = console 35 36 [handlers] 37 keys = console 38 39 [handler_console] 40 class = StreamHandler 41 args = (sys.stderr,) 42 level = DEBUG 43 formatter = generic 44 45 [formatters] 46 keys = generic 47 48 [formatter_generic] 49 format = %(asctime)s %(levelname)s [%(name)s] %(message)s -
main/waeup.sirp/branches/ulif-groktoolkit-1.4/etc/deploy.ini.in
r5677 r7713 55 55 host = 0.0.0.0 56 56 port = 8080 57 threadpool_workers = 50 58 use_threadpool = True 57 59 58 60 [DEFAULT] -
main/waeup.sirp/branches/ulif-groktoolkit-1.4/etc/site.zcml.in
r7577 r7713 30 30 <!-- Replace the following directive if you do not want 31 31 public access --> 32 < grant permission="zope.app.dublincore.view"33 principal="zope.Anybody" / >32 <!-- grant permission="zope.app.dublincore.view" 33 principal="zope.Anybody" / --> 34 34 <grant permission="zope.View" 35 35 principal="zope.Authenticated" /> 36 < grant permission="zope.app.dublincore.view"37 principal="zope.Authenticated" / >36 <!-- grant permission="zope.app.dublincore.view" 37 principal="zope.Authenticated" / --> 38 38 <grant permission="waeup.Public" 39 39 principal="zope.Everybody" /> -
main/waeup.sirp/branches/ulif-groktoolkit-1.4/etc/zope.conf.in
r5495 r7713 3 3 4 4 <zodb> 5 6 #cache-size 7 8 # num of concurrent pre-opened ZODB threads; default: 7 9 pool-size 50 10 5 11 # Standard blob storage 6 12 <blobstorage> … … 25 31 # #client zeo1 26 32 # </zeoclient> 33 34 # Uncomment this if you want to run a ZEO server instead: 35 # <zeo> 36 # # required; 'host:port' for TCP/IP, path to a socket file for UDP 37 # address localhost:8090 38 # 39 # # optional; 'address' remarks apply 40 # #monitor-address localhost:8091 41 # 42 # # optional; keep queue of last N transactions. Speeds up client cache verif. 43 # #invalidation-queue-size 10 44 # 45 # # optional; is this a read-only instance? true or false 46 # #read-only false 47 # 48 # # optional; seconds to wait for client to commit after acquiring lock 49 # #transaction-timeout 20 50 # 51 # # optional; authentication protocol. With ZEO only 'digest' supported 52 # #authentication-protocol digest 53 # 54 # # optional; Path of the database containing authentication credentials. 55 # #authentication-database 56 # 57 # # optional; the authentication realm of server 58 # #authentication-realm myrealm 59 # </zeo> 27 60 28 61 </zodb>
Note: See TracChangeset for help on using the changeset viewer.