Improve provided .htaccess

Should be less unsafe...
master
pictuga 2017-03-04 19:30:30 -10:00
parent 3fc89d5359
commit 4b8e3d1b8b
1 changed files with 14 additions and 2 deletions

View File

@ -1,5 +1,17 @@
AddHandler cgi-script .py
Options +ExecCGI
Options -Indexes
ErrorDocument 403 "Access forbidden"
ErrorDocument 404 /cgi/main.py
ErrorDocument 500 "A very nasty bug found his way onto this very server"
Order Deny,Allow
<Files ~ "\.(py|pyc|db|log)$">
deny from all
</Files>
<Files main.py>
allow from all
AddHandler cgi-script .py
Options +ExecCGI
</Files>