Hello,
I'm reading Absolute FreeBSD 2nd Ed, at the "Web and FTP Services" chapter.
The author wrote this as examples of apache's access control functionality.
A)
B)or if I did not understand it at all:
My question is whether the same examples could have been written in this more compact form..
A)
B)
or I just missed the entire point of "Order"..
Thanks.
I'm reading Absolute FreeBSD 2nd Ed, at the "Web and FTP Services" chapter.
The author wrote this as examples of apache's access control functionality.
A)
Code:
Order allow,deny
Allow from all
B)or if I did not understand it at all:
Code:
Order deny,allow
Allow from 192.168.0.0/16
Deny from all
My question is whether the same examples could have been written in this more compact form..
A)
Code:
Order deny,allow
B)
Code:
Order allow,deny
Allow from 192.168.0.0/16
or I just missed the entire point of "Order"..
Thanks.