Re: [users@httpd] Re: Restart over reload

2022-08-24 Thread Eric Covener
On Wed, Aug 24, 2022 at 7:35 PM Frank Gingras wrote: > > Curtis, > > Eric's answer was much more on point. > > Further, "enabling" a module is just confusing for new users. Modules are > either loaded, or not loaded. If you load a module previously not loaded, > then you restart httpd. Even thi

Re: [users@httpd] Re: Restart over reload

2022-08-24 Thread Frank Gingras
Curtis, Eric's answer was much more on point. Further, "enabling" a module is just confusing for new users. Modules are either loaded, or not loaded. If you load a module previously not loaded, then you restart httpd. If you change most configuration, then a graceful restart is fine, save for cha

Re: [users@httpd] Re: Restart over reload

2022-08-24 Thread Curtis Maurand
> On Aug 24, 2022, at 6:27 PM, πŸ˜‰ Good Guy πŸ˜‰ wrote: > > ο»ΏOn 24/08/2022 10:17, Jay Townsend wrote: >> Hi All, >> >> Does anyone know what type of changes will require a restart of apache over >> being able to do just a reload instead? As not able to find that anywhere in >> the docs to tell m

[users@httpd] Re: Restart over reload

2022-08-24 Thread πŸ˜‰ Good Guy πŸ˜‰
On 24/08/2022 10:17, Jay Townsend wrote: Hi All, Does anyone know what type of changes will require a restart of apache over being able to do just a reload instead? As not able to find that anywhere in the docs to tell me. This is so we can make the correct approach in Ansible. I just found t

Re: [users@httpd] Restart over reload

2022-08-24 Thread Eric Covener
On Wed, Aug 24, 2022 at 5:18 AM Jay Townsend wrote: > > Hi All, > > Does anyone know what type of changes will require a restart of apache over > being able to do just a reload instead? As not able to find that anywhere in > the docs to tell me. This is so we can make the correct approach in Ans

[users@httpd] Re: Restart over reload

2022-08-24 Thread πŸ˜‰ Good Guy πŸ˜‰
On 24/08/2022 11:19, Jay Townsend wrote: What about slight tweaks to a vhost would that need a restart over a reload? I think if the site is already enabled, then there is no need to do any-thing. Just make the changes necessary to your .conf file and test it out. -- With over 2.3 billion

[users@httpd] mod_proxy_hcheck module uses HTTP 1.0 protocol

2022-08-24 Thread Mike Scinto
We have a client using the mod proxy health check module which is failing because the healthcheck end point we are hitting does not accept HTTP 1.0 requests or older for security hardening purposes. We checkd the module here https://fossies.org/linux/httpd/modules/proxy/mod_proxy_hcheck.c and can s

Re: [users@httpd] Restart over reload

2022-08-24 Thread Jay Townsend
What about slight tweaks to a vhost would that need a restart over a reload? Would be good if we could get a definitive list/ documentation update for this as from what I can tell there does seem to be this question all over the net. > On 24 Aug 2022, at 11:15, Gillis J. de Nijs wrote: > > ο»Ώ

Re: [users@httpd] Restart over reload

2022-08-24 Thread Gillis J. de Nijs
I'm not aware of a list either, but my gut says something like: adding or removing modules, changing port numbers or ip addresses and the like, require a restart. "Regular" configuration changes, like you would do in a .htaccess, or adding/removing a VirtualHost can do with a reload.

[users@httpd] Restart over reload

2022-08-24 Thread Jay Townsend
Hi All, Does anyone know what type of changes will require a restart of apache over being able to do just a reload instead? As not able to find that anywhere in the docs to tell me. This is so we can make the correct approach in Ansible. -