MISP (core software) - Open Source Threat Intelligence and Sharing Platform (formely known as Malware Information Sharing Platform) https://www.misp-project.org/
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

34 lines
778 B

  1. INSTALLATION INSTRUCTIONS
  2. -------------------------
  3. If on Ubuntu, besides the DocumentRoot,
  4. you have to change the AllowOverride from None to All as well.
  5. DocumentRoot /var/www/cydefsig/app/webroot/
  6. <Directory />
  7. Options FollowSymLinks
  8. AllowOverride All
  9. </Directory>
  10. <Directory /var/www/>
  11. Options Indexes FollowSymLinks MultiViews
  12. AllowOverride All
  13. Order allow,deny
  14. allow from all
  15. </Directory>
  16. Find the original below, for reference.
  17. DocumentRoot /var/www
  18. <Directory />
  19. Options FollowSymLinks
  20. AllowOverride None
  21. </Directory>
  22. <Directory /var/www/>
  23. Options Indexes FollowSymLinks MultiViews
  24. AllowOverride None
  25. Order allow,deny
  26. allow from all
  27. </Directory>
  28. Now /etc/init.d/apache2 restart
  29. and you are done, and now able to use the application.