[users@httpd] mod_cluster in Apache 2.4.x

2023-09-20 Thread vicky chb
Hi all, Does Apache 2.4.x have mod_cluster module available? I checked https://httpd.apache.org/docs/2.4/mod/ but did not find. I also checked and found that enterprise based Apache like JBCS etc provides this package. If mod_cluster is currently not supported then what is the alternate option av

Re: [users@httpd] SSLCertificateFile localhost.crt does not exist

2022-12-25 Thread vicky chb
.crt or ca-bundle.trust.crt Also, replace SSLCertificateKeyFile directive with your private key. On Sun, 25 Dec 2022, 14:14 Jeffrey Denison, wrote: > Thanks Vicky. Can you give me the whole command? > > On 12/24/22, vicky chb wrote: > > Hi, > > > > Change "local

Re: [users@httpd] SSLCertificateFile localhost.crt does not exist

2022-12-24 Thread vicky chb
Hi, Change "localhost.crt" to your current certificate name present in the mentioned directory. The syntax is by default, you may need to change as per your certificate names. Instead of this: SSLCertificateFile: file '/etc/pki/tls/certs/localhost.crt' do this: SSLCertificateFile: file '/etc/pki

Re: [users@httpd] Session persist in apache

2022-12-20 Thread vicky chb
Is there anyway we can store session data at apache level, also is it going to store the user credentials at apache level? On Tue, 20 Dec 2022, 20:12 Eric Covener, wrote: > On Tue, Dec 20, 2022 at 9:38 AM vicky chb wrote: > > > > Login is happening at the backend Appli

Re: [users@httpd] Session persist in apache

2022-12-20 Thread vicky chb
n Login page. On Tue, 20 Dec 2022, 19:32 Eric Covener, wrote: > On Tue, Dec 20, 2022 at 8:57 AM vicky chb wrote: > > > > Hi, > > > > We have Apache configured as Frontend web server for our backend java > application over ajp protocol and using mod_jk. Now, we wa

[users@httpd] Session persist in apache

2022-12-20 Thread vicky chb
Hi, We have Apache configured as Frontend web server for our backend java application over ajp protocol and using mod_jk. Now, we want to maintain the user session for some period of time, For ex: If a user is logged in using his email & password in the morning, he/she should stay logged in till

[users@httpd] mod_auth_kerb deprecate

2022-12-06 Thread vicky chb
Hi all, We are planning to configure Kerberos with Apache HTTPD Server 2.4.37 installed on RHEL 8.5. As per RHEL, mod_auth_kerb module has been deprecated and has been replaced by mod_auth_gssapi. We have Virtual host configuration of Kerberos(from old setup) but don't know what will be the equiva

Re: [users@httpd] Mod_rewrite too many redirects

2022-11-24 Thread vicky chb
It worked!! Thanks a ton! Cheers -Vicky On Thu, 24 Nov 2022, 18:51 Eric Covener, wrote: > On Thu, Nov 24, 2022 at 8:09 AM vicky chb wrote: > > > > Hi, > > > > I am trying to achieve below redirection rule: > > http://localhost/?1234ab > > this url shou

[users@httpd] Mod_rewrite too many redirects

2022-11-24 Thread vicky chb
Hi, I am trying to achieve below redirection rule: http://localhost/?1234ab this url should be redirected to below url: http://localhost/welcome?trackFor=0&trackNo=1234ab (where welcome?trackFor=0trackNo= always remains same) Here you can see at the end, the query string is passed same as in sour