raftheunis87/tradingview-to-telegram-webhook-bot

404 Error

Opened this issue · 0 comments

I am running this bot on a webserver shared with other sites so using a proxy to forward requests to port 4000. But when I use apache with proxy configured (and mods enabled), I get a 404 error.

<VirtualHost *:80>
  ServerName tradingview.xxx.com
  ProxyPreserveHost On
  <Proxy *>
  Order deny,allow
  Allow from all
  </Proxy>
  ProxyPass / http://localhost:4000/
  ProxyPassReverse / http://localhost:4000/
</VirtualHost>

The server is receiving the requests. But due to the 404 error, apache reverts to the default site instead of processing the requests.

Is there any way I can enable logging to understand why this isn't working on my server?

Thanks in advance!