1 | # |
---|
2 | # ows_server - Pylons development environment configuration |
---|
3 | # |
---|
4 | # The %(here)s variable will be replaced with the parent directory of this file |
---|
5 | # |
---|
6 | [DEFAULT] |
---|
7 | debug = true |
---|
8 | email_to = you@yourdomain.com |
---|
9 | smtp_server = localhost |
---|
10 | error_email_from = paste@localhost |
---|
11 | configfile = ows_server/config/ndgDiscovery.config |
---|
12 | |
---|
13 | [server:main] |
---|
14 | use = egg:Paste#http |
---|
15 | host = 0.0.0.0 |
---|
16 | port = 8080 |
---|
17 | |
---|
18 | [pipeline:main] |
---|
19 | pipeline = logger main_app |
---|
20 | |
---|
21 | [filter:logger] |
---|
22 | use = egg:Paste#translogger |
---|
23 | |
---|
24 | [app:main_app] |
---|
25 | use = egg:ows_server |
---|
26 | cache_dir = %(here)s/data |
---|
27 | session_key = ows_server |
---|
28 | session_secret = somesecret |
---|
29 | csml_dir = /research/home/spascoe/host/saturn/data/ddc_data/obs |
---|
30 | tmp_dir = %(here)s/data/tmp |
---|
31 | #used for wcs "store": |
---|
32 | publish_dir=%(here)s/ows_server/private/filestore |
---|
33 | ows_common_config = %(here)s/eg_ows_capabilities.xml |
---|
34 | |
---|
35 | |
---|
36 | # If you'd like to fine-tune the individual locations of the cache data dirs |
---|
37 | # for Myghty, the Cache data, or the Session saves, un-comment the desired |
---|
38 | # settings here: |
---|
39 | #myghty_data_dir = %(here)s/data/templates |
---|
40 | #cache_data_dir = %(here)s/data/cache |
---|
41 | #session_data_dir = %(here)s/data/sessions |
---|
42 | |
---|
43 | # Specify the database for SQLAlchemy to use via |
---|
44 | # pylons.database.session_context. |
---|
45 | # %(here) may include a ':' character on Windows environments; this can |
---|
46 | # invalidate the URI when specifying a SQLite db via path name |
---|
47 | #sqlalchemy.dburi = sqlite:///%(here)s/somedb.db |
---|
48 | |
---|
49 | # Specify the database for SQLObject to use via pylons.database.PackageHub. |
---|
50 | #sqlobject.dburi = sqlite://%(here)s/somedb.db |
---|
51 | |
---|
52 | # WARNING: *THE LINE BELOW MUST BE UNCOMMENTED ON A PRODUCTION ENVIRONMENT* |
---|
53 | # Debug mode will enable the interactive debugging tool, allowing ANYONE to |
---|
54 | # execute malicious code after an exception is raised. |
---|
55 | #set debug = false |
---|