Advertisement
Sergio_Istea

tp01.istea.conf.blas

Apr 26th, 2023
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. <VirtualHost *:80>
  2.  
  3. ServerAdmin webmaster@localhost
  4. DocumentRoot /var/www/tp01.istea
  5. ServerName tp01.istea
  6.  
  7. DirectoryIndex page.html
  8.  
  9.  
  10. ErrorLog ${APACHE_LOG_DIR}/error.log
  11. CustomLog ${APACHE_LOG_DIR}/access.log combined
  12.  
  13. # Debe haber otro directorio que contenga archivos, no contenga un fichero
  14. # index definido y se prohiba su visualizacion.
  15.  
  16. <Directory "/var/www/tp01.istea/bloqueo">
  17.  
  18. Options None
  19.  
  20. </Directory>
  21.  
  22. # Dentro del raiz del vhost debe haber un directorio que contenga un fichero
  23. # que tampoco debe ser 'index.html' pero debe tener un tipo de index.
  24.  
  25. <Directory "/var/www/tp01.istea/tp01">
  26.  
  27. DirectoryIndex subdirect.html
  28.  
  29. </Directory>
  30.  
  31. # Debe haber en el raiz un directorio que permita visualizar su
  32. #contenido no teniendo un fichero index definido.
  33.  
  34. <Directory "/var/www/tp01.istea/tp02">
  35.  
  36. Options Indexes
  37.  
  38. </Directory>
  39.  
  40. </VirtualHost>
  41.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement