25 lines
534 B
JSON
25 lines
534 B
JSON
|
{
|
||
|
"listeners": {
|
||
|
"*:80": {
|
||
|
"pass": "routes"
|
||
|
}
|
||
|
},
|
||
|
"routes": [{
|
||
|
"match": {
|
||
|
"uri": "*"
|
||
|
},
|
||
|
"action": {
|
||
|
"pass": "applications/racist_application"
|
||
|
}
|
||
|
}],
|
||
|
"applications": {
|
||
|
"racist_application": {
|
||
|
"type": "python",
|
||
|
"processes": 10,
|
||
|
"working_directory": "/www/store/cart/",
|
||
|
"path": "/www/store/",
|
||
|
"home": ".virtualenv/",
|
||
|
"module": "cart.run"
|
||
|
}
|
||
|
}
|
||
|
}
|