Hello all.

I'm so confused about the order directive of the httpd.conf(apache) and proftpd.conf(proftpd).

As I know the proftpd.conf is similars to httpd.conf.

When I tested the order directive of the httpd.conf and proftpd.conf the result is not alike.
for example,I would like to allow just from 192.168.1.1 and deny all.
(a) httpd.conf <Directory />
Order deny,allow
Allow from 192.168.1.1
Deny from all
</Directory>

(b) proftpd.conf <Limit LOGIN>
Order deny,allow
Allow from 192.168.1.1
Deny from all
</Limit>


But (b) is not work, (b) should be modigied like this to works well.

<Limit LOGIN>
Order allow,deny
Allow from 192.168.1.1
Deny from all
</Limit>


So, I'm so confused about the directive of the order.

any idea?

Thanks in advance.


_________________________________________________________________
MSN Messenger�� ���� �¶��λ� �ִ� ģ���� ��ȭ�� ��������. http://messenger.msn.co.kr

Reply via email to