oci-images/strichliste/config.json

45 lines
747 B
JSON
Raw Permalink Normal View History

2024-11-09 12:56:19 -06:00
{
"listeners": {
"*:80": {
"pass": "routes"
}
},
"routes": [
{
"match": {
"uri": ["/index.php", "/index.php/*"]
},
"action": {
"pass": "applications/php_app"
}
},
{
"match": {
"uri": ["/api", "/api/*"]
},
"action": {
"rewrite": "/index.php$uri",
"pass": "applications/php_app"
}
},
{
"match": {
"uri": ["/*"]
},
"action": {
"share": "/var/www/html/public$uri",
"fallback": {
"rewrite": "/index.php$uri",
"pass": "routes"
}
}
}
],
"applications": {
"php_app": {
"type": "php",
"root": "/var/www/html/public"
}
}
}