parent
3fc89d5359
commit
4b8e3d1b8b
|
@ -1,5 +1,17 @@
|
||||||
AddHandler cgi-script .py
|
Options -Indexes
|
||||||
Options +ExecCGI
|
|
||||||
|
|
||||||
|
ErrorDocument 403 "Access forbidden"
|
||||||
ErrorDocument 404 /cgi/main.py
|
ErrorDocument 404 /cgi/main.py
|
||||||
ErrorDocument 500 "A very nasty bug found his way onto this very server"
|
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>
|
||||||
|
|
Loading…
Reference in New Issue