Re: [users@httpd] Re: Custom Error Pages

2020-04-18 Thread Andrei
Horrible idea. Total overkill running all those echos and such for a mere 404... Bots will bend your server during spikes. Use shtml. Call it a day. On Sat, Apr 18, 2020, 18:27 Antony Stone wrote: > On Saturday 18 April 2020 at 17:05:22, Praveen Kumar K S wrote: > > > Hello, > > > > Any help wou

Re: [users@httpd] Re: Custom Error Pages

2020-04-18 Thread Antony Stone
On Saturday 18 April 2020 at 17:05:22, Praveen Kumar K S wrote: > Hello, > > Any help would be appreciated. If any of you had done this before or > published on blogs or somewhere, please suggest your inputs. Well, first of all, does your web server successfully serve CGI scripts when they are

[users@httpd] Re: Custom Error Pages

2020-04-18 Thread Praveen Kumar K S
Hello, Any help would be appreciated. If any of you had done this before or published on blogs or somewhere, please suggest your inputs. Regards, Praveen On Thu, 16 Apr, 2020, 14:29 Praveen Kumar K S, wrote: > Hello, > > Thanks for your response. I had gone through errordocument. > > I would l

Re: [users@httpd] Two web-servers with different IP in LAN

2020-04-18 Thread Antony Stone
On Saturday 18 April 2020 at 16:35:30, mail mail wrote: > I get error: > > Sat Apr 18 17:07:06.005494 2020] [ssl:emerg] [pid 16506:tid > 139660538349440] AH02572: Failed to configure at least one certificate and > key for portal.mydom.com:443 > [Sat Apr 18 17:07:06.005643 2020] [ssl:emerg] [pid

Re: [users@httpd] Two web-servers with different IP in LAN

2020-04-18 Thread mail mail
  18.04.2020, 09:37, "Walter H." :you can configure 192.168.1.10 as a proxy for 192.168.1.20 foraccessing  portal.mydom.comthis looks simiar to this:ServerName portal.mydom.com:80ProxyPass / http://192.168.1.20/ProxyPassReverse / http://192.168.1.20/similar with 443 (https)Thanks for answer, but no