Re: [users@httpd] Issues with files accessed over NFS

2022-06-30 Thread Bender, Charles
check the mount options for the NFS mount on apache server as well as the underlying file system on the NFS server. unless needed, set to noatime and nodiratime From: Chris Woelkers - NOAA Federal Sent: Thursday, June 30, 2022 3:07:01 PM To: users@httpd.apache.or

Re: [users@httpd] Re: Multi-domain with SSL - Virtualhost all need IPs?

2022-05-20 Thread Bender, Charles
Your virtual host is defined wrong. Use the names not IP addresses http://1.1.1.13:443/>> Servername example2.com

RE: [users@httpd] Re: Graceful shutoff of Apache without it being a service.

2021-05-06 Thread Bender, Charles
httpd.exe -k graceful will reload config without stopping Apache or dropping connections From: Talin Sharma Sent: Thursday, May 06, 2021 6:10 PM To: users@httpd.apache.org Subject: Re: [users@httpd] Re: Graceful shutoff of Apache without it being a service. These commands only work if apache i

Re: [users@httpd] Running php 7.0 and 7.2 for different websites with apache

2021-04-08 Thread Bender, Charles
You're making this very difficult for yourself by having 2 different versions of PHP installed on 1 server box. Even if you get working maintaining will be challenging. Suggestion- run PHP and PHP-FPM in separate Docker containers on same server, each with specific version of PHP you need. Then

Re: [users@httpd] Apache in under attack.

2021-01-11 Thread Bender, Charles
Run this against your log file in bash shell cat access.log | awk '{print $1}' | sort | uniq -c | sort -nr | head This will show you most frequent IPs, sorted in descending order. Block as needed On 1/11/21, 7:11 PM, "Jason Long" wrote: Can you help me?

[users@httpd] 404 error - locationmatch and proxypassmatch with parentheses in URL

2019-12-09 Thread Bender, Charles
Hi, We have observed the following error. If a URL contains parentheses, and is matched by LocationMatch that sends to ProxyPassMatch, the backend doesn't receive request and Apache returns 404 error. ProxyPassMatch "https://1.2.3.4:443"; This URL should work, but doesn't- http://examp