16 lines
403 B
ApacheConf
16 lines
403 B
ApacheConf
Options -Indexes
|
|
|
|
ErrorDocument 403 "Access forbidden"
|
|
ErrorDocument 404 /cgi/main.py
|
|
ErrorDocument 500 "A very nasty bug found his way onto this very server"
|
|
|
|
# Uncomment below line to turn debug on for all requests
|
|
#SetEnv DEBUG 1
|
|
|
|
# Uncomment below line to turn debug on for requests with :debug in the url
|
|
#SetEnvIf Request_URI :debug DEBUG=1
|
|
|
|
<Files ~ "\.(py|pyc|db|log)$">
|
|
deny from all
|
|
</Files>
|