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

2023-06-21 Thread Richard
> Date: Wednesday, June 21, 2023 20:14:40 + > From: Richard > > >> Date: Thursday, June 22, 2023 00:13:34 +0530 >> From: Kaushal Shriyan >> >> When i hit https://nodejs.mydomain.com/demo/index.html I see the >> below in both httpd error and access logs >> >># pwd >> /var/log/httpd >>#

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

2023-06-21 Thread Richard
> Date: Thursday, June 22, 2023 00:13:34 +0530 > From: Kaushal Shriyan > > When i hit https://nodejs.mydomain.com/demo/index.html I see the > below in both httpd error and access logs > ># pwd > /var/log/httpd ># cat error_log > [Thu Jun 22 00:06:34.161122 2023] [suexec:notice] [pid

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

2023-06-21 Thread Kaushal Shriyan
Hi Daniel, Please refer to the below details $ npm start > api-console@6.6.32 start > node demo/index.js Browserslist: caniuse-lite is outdated. Please run: npx update-browserslist-db@latest Why you should do it regularly: https://github.com/browserslist/update-db#readme es-dev-server

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

2023-06-21 Thread Daniel Gruno
On 2023-06-21 18:57, Kaushal Shriyan wrote: Hi, I am running node.js application on port 8000 and Apache HTTP server on CentOS Linux release 7.9.2009 (Core) # node --version *v16.20.0* # httpd -v Server version: *Apache/2.4.57 (IUS)* Server built:   Apr  7 2023 14:49:47 # _httpd.conf file

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

2023-06-21 Thread Richard
> Date: Wednesday, June 21, 2023 23:09:45 +0530 > From: Kaushal Shriyan > > When I am trying to access the URL > https://nodejs.mydomain.com/demo/index.html, I am seeing the below > information in Apache HTTP server access logs. > > 172.16.16.45 - drupaladmin [21/Jun/2023:23:04:07 +0530] "GET

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

2023-06-21 Thread Darryl Baker
I will be in meeting for the rest of the afternoon. Here is an anonymized version of my working configuration. Hope it helps. The main URL is https://directory.uexample.com/search nodejs is expacting /search ServerName directory.example.com ServerAlias

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

2023-06-21 Thread Eric Covener
On Wed, Jun 21, 2023 at 1:45 PM Kaushal Shriyan wrote: > > Hi, > > When I hit http://nodejs.mydomain.com:8000/demo/index.html (without ssl) it > works with port number using the below httpd config file. Is there a way to > enable SSL connections? > > httpd.conf file configuration > #cat

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

2023-06-21 Thread Kaushal Shriyan
Hi, When I hit http://nodejs.mydomain.com:8000/demo/index.html (without ssl) it works with port number using the below httpd config file. Is there a way to enable SSL connections? *httpd.conf file configuration* #cat /etc/httpd/conf.d/nodejsnodejsssl.conf ProxyPass

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

2023-06-21 Thread Kaushal Shriyan
On Wed, Jun 21, 2023 at 10:35 PM Darryl Baker wrote: > Have you tried browsing to https://nodejs.mydomain.com/demo/index.html > The proxy configuration in Apache will direct the connection to nodejs over > port 8000. > Hi Darryl, When I am trying to access the URL

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

2023-06-21 Thread Darryl Baker
Have you tried browsing to https://nodejs.mydomain.com/demo/index.html The proxy configuration in Apache will direct the connection to nodejs over port 8000. Darryl Baker, GSEC, GCLD (he/him/his) Sr. System Administrator Distributed Application Platform Services Northwestern University 4th

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

2023-06-21 Thread Kaushal Shriyan
Hi, I am running node.js application on port 8000 and Apache HTTP server on CentOS Linux release 7.9.2009 (Core) # node --version *v16.20.0* # httpd -v Server version: *Apache/2.4.57 (IUS)* Server built: Apr 7 2023 14:49:47 # *httpd.conf file configuration* #cat