Files
nginx-unit/welcome.json
Eugene Morozov 1be88e1973
Some checks failed
Build Docker Image / build-and-deploy-image (3.12) (push) Waiting to run
Build Docker Image / build-and-deploy-image (3.11) (push) Waiting to run
Build Docker Image / build-and-deploy-image (3.10) (push) Has been cancelled
Removed unit project; use matrix to build
2024-07-20 10:48:03 +03:00

26 lines
482 B
JSON

{
"listeners": {
"*:80": {
"pass": "routes"
}
},
"routes": [
{
"match": {
"headers": {
"accept": "*text/html*"
}
},
"action": {
"share": "/usr/share/unit/welcome/welcome.html"
}
},
{
"action": {
"share": "/usr/share/unit/welcome/welcome.md"
}
}
]
}