RE: [users@httpd] Apache static compile

2023-04-12 Thread Chris me
to still use the old ssl library on the system. -Original Message- From: Rainer Canavan Sent: Wednesday, April 12, 2023 12:01 AM To: users@httpd.apache.org Subject: Re: [users@httpd] Apache static compile On Wed, Apr 12, 2023 at 1:49 AM Chris me wrote: > > Basically I am trying

RE: [users@httpd] Apache static compile

2023-04-08 Thread Chris me
that would turn out. -Original Message- From: Bjoern Voigt Sent: Saturday, April 1, 2023 3:06 AM To: users@httpd.apache.org Subject: Re: [users@httpd] Apache static compile On 29.03.23 18:49, Chris me wrote: > Thanks, unfortuanetely those options made no difference at all, the same >

RE: [users@httpd] Apache static compile

2023-04-11 Thread Chris me
to worry about upgrading the server libs and current openssl version. -Original Message- From: Rainer Canavan Sent: Tuesday, April 11, 2023 3:41 AM To: users@httpd.apache.org Subject: Re: [users@httpd] Apache static compile On Sat, Apr 8, 2023 at 11:22 PM Chris me wrote: > >

[users@httpd] Apache static compile

2023-03-27 Thread Chris me
Hi, I hope this is an OK question. I have a need to build apache with all libraries statically linked and included in the httpd executable. Is this possible? Right now ldd is showing: libpcre.so.3 => /lib/x86_64-linux-gnu/libpcre.so.3 libexpat.so.1 => /lib/x86_64-linux-gnu/libexpat.so.1

RE: [users@httpd] Apache static compile

2023-03-29 Thread Chris me
: Bjoern Voigt Sent: Wednesday, March 29, 2023 6:37 AM To: users@httpd.apache.org Subject: Re: [users@httpd] Apache static compile On 28.03.23 00:14, Chris me wrote: > > Hi, I hope this is an OK question. > > I have a need to build apache with all libraries statically linked and

[users@httpd] Compile with different version of ssl

2023-03-29 Thread Chris me
Hi, I am trying to compile with --with-ssl=../openssl-1.1.1t, but it is being ignored. How do I get this to work?

RE: [users@httpd] Compile with different version of ssl

2023-03-29 Thread Chris me
with different version of ssl Make sure their libs are in use by the system in the session where you want to compile httpd to use them. That is, export LD_LIBRARY_PATH="/path/to/openssl-1.1.1t/lib" prior to the configure and make steps. El mié, 29 mar 2023 a las 18:38, Chris me (

RE: [users@httpd] Unicode Chars not working

2023-11-13 Thread Chris me
lto:users@httpd.apache.org> Subject: Re: [users@httpd] Unicode Chars not working On Sat, Nov 11, 2023 at 6:49 PM Chris me mailto:phunct...@hotmail.com>> wrote: Hi, I am moving my site from one server to another, both are apache 2. The files where tarred and zipped on one linux server and

RE: [users@httpd] Unicode Chars not working

2023-11-12 Thread Chris me
gt;> Date: 2023-11-11 4:02 p.m. (GMT-08:00) To: users@httpd.apache.org<mailto:users@httpd.apache.org> Subject: Re: [users@httpd] Unicode Chars not working On Sat, Nov 11, 2023 at 6:49 PM Chris me mailto:phunct...@hotmail.com>> wrote: Hi, I am moving my site from one server to an

[users@httpd] Unicode Chars not working

2023-11-11 Thread Chris me
Hi, I am moving my site from one server to another, both are apache 2. The files where tarred and zipped on one linux server and copied to another linux server. On the new server, any pages with a Unicode character is getting served with the black diamond and question mark. I enabled

[users@httpd] Multi site SSL problems

2024-05-09 Thread Chris me
Hi, I am having an issue trying to get multiple sites with their own SSL cert. I purchased AlphaSSL certs for them. The strange thing, the first cert works, the second gives me an ERR_SSL_PROTOCOL_ERROR, but only on some systems. This is what I am using now: ( Site1 is fine, Site2 gives me the

RE: [users@httpd] Multi site SSL problems

2024-05-10 Thread Chris me
it still apply? It does not look like mod_access_compat is listed under mods-enabled From: Frank Gingras Sent: Thursday, May 9, 2024 4:12 PM To: users@httpd.apache.org Subject: Re: [users@httpd] Multi site SSL problems On Thu, May 9, 2024 at 6:54 PM Chris me mailto:phunct...@hotmail.com>> wro

RE: [users@httpd] Multi site SSL problems

2024-05-10 Thread Chris me
I found NameVirtualHost *:443 was commented out in ports.conf, I changed that. Now I am back to the ssl protocol error for the second site. From: Chris me Sent: Friday, May 10, 2024 8:40 AM To: users@httpd.apache.org Subject: RE: [users@httpd] Multi site SSL problems I set up each entry

[users@httpd] Require paramater

2024-05-13 Thread Chris me
The Apache docs recommend dong this to setup a default deny to file locations: Require all denied Do I do that in httpd.conf or do I add that to each entry?