1
It’s using Node to run my application and I can’t configure htaccess to point to the port I set
RewriteEngine on
RewriteCond %{HTTP_HOST} ^dashponto.softmarketing.com.br$ [OR]
RewriteCond %{HTTP_HOST} ^dashponto.softmarketing.com.br$
RewriteRule ^(.*)$ http://dashponto.softmarketing.com.br:1589/$1 [P]
Are you running the Node with Apache? The best I think would be to do this in Nodejs.
– Sergio
yes apache2....
– raddx
Use Proxyreverse on your virtualhost, so vc sets address the port the system will use.
– Antony Alkmim
npm proxyreverse?
– raddx