Re: [users@httpd] temporary enable/disable access

2024-08-02 Thread Frank Gingras
On Fri, Aug 2, 2024 at 6:55 AM Eric Covener wrote: > > >46 Order deny,allow > > This allows access by default. > "Order allow,deny" denies access by default. > > > > The idea is that I can quickly limit access to the website by > > > uncommenting just a single line in the conf

Re: [users@httpd] temporary enable/disable access

2024-08-02 Thread Eric Covener
> >46 Order deny,allow This allows access by default. "Order allow,deny" denies access by default. > > The idea is that I can quickly limit access to the website by > > uncommenting just a single line in the config. However when I change it > > to > > > >47 #Deny

RE: [users@httpd] temporary enable/disable access

2024-08-02 Thread Marc
> > > I have currently such virtual host config: > > > 1 > 2 AllowOverride All > 3 Require all granted > 4 > >45 >46 Order deny,allow >47 Deny from all >48 #Allow from all >

Re: [users@httpd] temporary enable/disable access

2024-08-01 Thread Frank Gingras
On Thu, Aug 1, 2024 at 5:18 PM Marc wrote: > > I have currently such virtual host config: > > > 1 > 2 AllowOverride All > 3 Require all granted > 4 > > 45 > 46 Order deny,allow > 47 Deny from all > 48 #Allow from all > 49 Allow from

[users@httpd] temporary enable/disable access

2024-08-01 Thread Marc
I have currently such virtual host config: 1 2 AllowOverride All 3 Require all granted 4 45 46 Order deny,allow 47 Deny from all 48 #Allow from all 49 Allow from 1.1.1.1 50 #Allow from 2.2.2.2 51 # allow cron The ide