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.
 
 
 
 
 
 

26 lines
807 B

  1. VIRTUAL HOST INSTRUCTION
  2. ------------------------
  3. CyDefSIG is able to run in an Apache virtual host setup.
  4. This takes 2 variables, the hostname and CyDefSIG directory.
  5. To this one must enter the hostname in /etc/hosts
  6. and create an Apache config in apache2/sites-available.
  7. Say we have a hostname cydefsig2.local.net and
  8. CyDefSIG installed in /var/www/second_instance/cydefsig,
  9. we will add to /etc/hosts:
  10. 127.0.1.1 cydefsig2.local.net
  11. And create a file /etc/apache2/sites-available/<second_instance_name>
  12. containing:
  13. <VirtualHost *:80>
  14. ServerAdmin webmaster@example.com
  15. ServerName cydefsig2.local.net
  16. ServerAlias mysite
  17. # Indexes + Directory Root.
  18. DirectoryIndex index.php
  19. DocumentRoot /var/www/second_instance/cydefsig/app/webroot
  20. </VirtualHost>