.htaccess 314 B

12345678910111213141516171819
  1. ## WebGCC server configuration ##
  2. # Block access to generated text input #
  3. <Files "*.txt">
  4. Order Allow,Deny
  5. Deny from all
  6. </Files>
  7. # Block access to saved source codes #
  8. <Files "*.c">
  9. Order Allow,Deny
  10. Deny from all
  11. </Files>
  12. # Block access to executables #
  13. <Files "*.bin">
  14. Order Allow,Deny
  15. Deny from all
  16. </Files>