Changeset 77:7b4ac2d6ef4b
- Timestamp:
- 02/13/07 12:27:25
(2 years ago)
- Author:
- James Taylor <james@bx.psu.edu>
- branch:
- default
- convert_revision:
- svn:9bcadc22-80f8-0310-8a53-c8f022958886/galaxy/trunk@1359
- Message:
1) A 'prefork threaded' mixin hacked together from existing flup components
2) An AJP server using that mixin (we could also do fastcgi or scgi, but AJP
is the best option).
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r61 |
r77 |
|
| 15 | 15 | use_threadpool = true |
|---|
| 16 | 16 | threadpool_workers = 10 |
|---|
| | 17 | |
|---|
| | 18 | ## Start an AJP listener on port 4001 with 10 processes and 10 threads per process |
|---|
| | 19 | # [server:main] |
|---|
| | 20 | # paste.server_factory = galaxy.web.flupservers.ajp_forkthreaded:factory |
|---|
| | 21 | # minSpare = 10 |
|---|
| | 22 | # maxSpare = 10 |
|---|
| | 23 | # maxThreads = 10 |
|---|
| | 24 | # host = localhost |
|---|
| | 25 | # port = 4001 |
|---|
| 17 | 26 | |
|---|
| 18 | 27 | # The base application dispatches some queries to universe and others to |
|---|