Re: [users@httpd] node.js application listening on port 8000 enabled with SSL certificate returns ERR_SSL_PROTOCOL_ERROR on browser.

2023-07-01 Thread Frank Gingras
This thread is getting very tiresome. So, let's summarize: - You want to request /, serve index.html - For all other requests, proxy internally As such, keep the ProxyPass /index.html ! for clarity and change your existing ProxyPass directive to: ProxyPassMatch ^/(.+) http://localhost:3000/ In

Re: [users@httpd] node.js application listening on port 8000 enabled with SSL certificate returns ERR_SSL_PROTOCOL_ERROR on browser.

2023-07-01 Thread Kaushal Shriyan
On Sun, Jul 2, 2023 at 6:20 AM Kaushal Shriyan wrote: > > > On Sun, Jul 2, 2023 at 6:14 AM Kaushal Shriyan > wrote: > >> >> >> On Sat, Jul 1, 2023 at 7:50 AM Kaushal Shriyan >> wrote: >> >>> Hi Frank, >>> >>> Thanks for the email response and much appreciated. I added the >>> ProxyPass /index.h

Re: [users@httpd] node.js application listening on port 8000 enabled with SSL certificate returns ERR_SSL_PROTOCOL_ERROR on browser.

2023-07-01 Thread Kaushal Shriyan
On Sun, Jul 2, 2023 at 6:14 AM Kaushal Shriyan wrote: > > > On Sat, Jul 1, 2023 at 7:50 AM Kaushal Shriyan > wrote: > >> Hi Frank, >> >> Thanks for the email response and much appreciated. I added the ProxyPass >> /index.html ! directive in /etc/httpd/conf.d/phpnodejs.conf >> >> #cat /etc/httpd

Re: [users@httpd] node.js application listening on port 8000 enabled with SSL certificate returns ERR_SSL_PROTOCOL_ERROR on browser.

2023-07-01 Thread Kaushal Shriyan
On Sat, Jul 1, 2023 at 7:50 AM Kaushal Shriyan wrote: > Hi Frank, > > Thanks for the email response and much appreciated. I added the ProxyPass > /index.html ! directive in /etc/httpd/conf.d/phpnodejs.conf > > #cat /etc/httpd/conf.d/phpnodejs.conf > > ServerName phpnodejs.mydomain.com >