PHP status page not working in Apache

I solved it my own by replacing

<Location /status-php>
    SetHandler "proxy:unix:/run/php/php7.3-fpm.sock|fcgi://localhost"
</Location>

with

ProxyPass "/status/php" "unix:/run/php/php7.3-fpm.sock|fcgi://localhost"

This way, I can reach PHP-FPM status page via /status/php now. No clue why Apache handler fails.