ngnix to apache2

как перевести данный ngnix config в apache2 config

# server_name play.test.com
location ~ ^/(.*)/test/create {
    proxy_pass http://localhost:3000/create/vanilla/$1;
    proxy_redirect off;
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}

Ответы (0 шт):