Re: [users@httpd] Configuring redirects from http to https

2018-11-30 Thread Jack M. Nilles
I got nothing out of that filter. I note that response to my queries produced: [30/Nov/2018:14:57:10 -0800] "-" 408 - "-" "-" on a few occasions. > On 30 Nov 2018, at 15:48, Filipe Cifali wrote: > > grep -i “mismatch” on it may provide something, your config seems correct, > which is weird >

Re: [users@httpd] Configuring redirects from http to https

2018-11-30 Thread Filipe Cifali
grep -i “mismatch” on it may provide something, your config seems correct, which is weird On Fri, 30 Nov 2018 at 21:17 Jack M. Nilles wrote: > I have an access log and an error log. The error log doesn't show much for > today. The access log is full of entries from those who have used the https

Re: [users@httpd] Configuring redirects from http to https

2018-11-30 Thread Jack M. Nilles
I have an access log and an error log. The error log doesn't show much for today. The access log is full of entries from those who have used the https address. What should I be looking for to detect the http failures? - To uns

Re: [users@httpd] Configuring redirects from http to https

2018-11-30 Thread Filipe Cifali
Turn log level and attach log outputs in pastebin/gist or even here (just the text) of a full access, from begin to end of the request. Also, use cURL locally at the httpd server to try to reproduce it On Fri, 30 Nov 2018 at 20:14 Jack M. Nilles wrote: > The interchange also had no effect. Nor

Re: [users@httpd] Configuring redirects from http to https

2018-11-30 Thread Jack M. Nilles
The interchange also had no effect. Nor did changing the line to: RedirectPermanent / https://www.host1.com > On 30 Nov 2018, at 13:52, Jack M. Nilles wrote: > > This doesn't work for me either with or without the trailing slash. I'll try > it with the name and alias l

Re: [users@httpd] Configuring redirects from http to https

2018-11-30 Thread Jack M. Nilles
This doesn't work for me either with or without the trailing slash. I'll try it with the name and alias lines interchanged. > On 30 Nov 2018, at 12:27, Jeff Cox wrote: > > Try it like this. This is mine except my server name and server alias are > reversed. > > > ServerName www.abc.com

Re: [users@httpd] Configuring redirects from http to https

2018-11-30 Thread Jeff Cox
Try it like this. This is mine except my server name and server alias are reversed. ServerName www.abc.com ServerAlias abc.com Redirect 301 / https://www.abc.com/ -- Jeff Cox j...@jeffpcox.com On Fri, Nov 30, 2018 at 1:40 PM Jack M. Nilles wrote: > I tried adding trailing slas

Re: [users@httpd] This is done by ensuring that the web server can write to these locations.

2018-11-30 Thread Jonathon Koyle
Largely this is file permissions, depending on your operating system there may be other considerations, such as SELinux issues. The last thing I can think of is maybe needing directory and alias directives in the Apache config. On Thu, Nov 29, 2018, 14:38 Dave Stevens I want to set up a folder s

Re: [users@httpd] Configuring redirects from http to https

2018-11-30 Thread Jack M. Nilles
I tried adding trailing slashes as follows, but the result was the same: a 111 error. Did I misinterpret your comment? > # http redirect > > ServerName www.host1.com > ServerAlias host1.com *.host1.com >Redirect "/" "https://www.host1.com/"; # Here > > > > ServerName www.host2.com >

Re: [users@httpd] The Require Directives

2018-11-30 Thread Bill Tantzen
Awesome, I will try it out -- I was seriously overthinking and over-engineering this thing. In the meantime, a little mod_rewrite magic works too... Thanks a million! Bill On Thu, Nov 29, 2018 at 4:41 PM Jonathon Koyle wrote: > > You might try this, with some simple testing it seems to work... >