[users@httpd] High CPU and scoreboard full of W sending reply

2020-06-04 Thread dmallor
Hello All,Not sure if this is a common known tuning/configuration issue or not but I could not find any direct hits searching online for what could be causing this.  I have an Apache server configured *purely* as a reverse proxy for a few apps.  One of the recent apps added behind it has some re

RE: [users@httpd] Let's Encrypt (LE) and port 80

2020-06-17 Thread dmallor
You can just setup a global redirect on your 80 listener but exclude LE root pathRewriteEngine On    RewriteCond %{REQUEST_URI} !^/.well-known/acme-challenge/.*    RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [QSA,L,R=301]Danny Original message From: Tom Browder Da

Re: [users@httpd] Let's Encrypt (LE) and port 80

2020-06-17 Thread dmallor
un 17, 2020 at 09:55 dmallor wrote:You can just setup a global redirect on your 80 listener but exclude LE root path...Thanks, Danny.I've never used rewrites before, but that looks like a good idea. But which of the two solutions would you prefer?What is the downside of blocking port 80 enti

Re: [users@httpd] Default 403 response when no matching vhost

2020-07-14 Thread dmallor
Appreciate the feedback. Rewrite was certainly my first choice and allows me to exclude paths. Danny Original message From: Eric Covener Date: 7/13/20 12:39 PM (GMT-06:00) To: users@httpd.apache.org Subject: Re: [users@httpd] Default 403 response when no matching vhost On Mon