stm32-fmt-code/access_control_python_server/unit.json

25 lines
534 B
JSON
Raw Normal View History

2023-09-22 18:37:02 +00:00
{
"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"
}
}
}