forked from bcit-ci/CodeIgniter
-
Notifications
You must be signed in to change notification settings - Fork 0
cool configs
World Wide Web Server edited this page Jul 4, 2012
·
5 revisions
this page contains few configurations which might help in developing and providing security to the applications:
Security - disable directory listing I heard that one of the "must do's" on setting a secure apache webserver environment is to disable directory browsing. I want to do this. Do I carefully remove "Indexes" in my htpd.conf file and or change "Indexes" to "-Indexes":
<Directory "/www/vhosts/localhost"> Options Indexes FollowSymLinks Order allow,deny Allow from all
to:
<Directory "/www/vhosts/localhost"> Options FollowSymLinks Order allow,deny Allow from all
or:
<Directory "/www/vhosts/localhost"> Options -Indexes FollowSymLinks Order allow,deny Allow from all
Then restart the server?
- Original author: Derek Jones
- How to extend helpers: See User Guide
- Modified by: Thomas Stapleton (id, classes, selected country option and all option)
- Modified by: Bradley De-Lar (construct, setLayout example)