nginx: added route to logo handler

This commit is contained in:
Andrey Savihin 2024-03-26 18:48:58 +03:00
parent b0bcd5d691
commit 6293559499

View File

@ -345,6 +345,10 @@ server {
proxy_pass http://127.0.0.1:5000;
}
location /logo.ashx {
proxy_pass http://127.0.0.1:5000;
}
location /payment.ashx {
proxy_pass http://127.0.0.1:5000;
}