How to run Node And apache together in amazon ec2?
I've not used apache for ages now but I think your location for mod_proxy would look like:
<Location /node >
ProxyPass http://localhost:3002/
</Location>
Also, have you restarted apache?
service httpd restart
should do it.