Advertisement
Sergio_Istea

contextos apache2

Oct 18th, 2023
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. # Directivas Globales
  2. # Contexto Server
  3.  
  4. ServerRoot /etc/apache2
  5. PidFile /var/run/apache2/apache2.pid
  6. Listen 80
  7. ErrorLog /var/log/apache2/error.log
  8.  
  9. # Directivas del Módulo de Usuario
  10. LoadModule user_module modules/mod_user.so
  11. User www-data
  12. Group www-data
  13.  
  14. # Contexto VirtualHost
  15.  
  16. <VirtualHost *:80>
  17.  
  18. # Directivas locales
  19. # Contexto VirutalHost
  20. ServerAdmin webmaster@ejemplo.com
  21. DocumentRoot /var/www/ejemplo.com
  22. ServerName ejemplo.com
  23. ServerAlias www.ejemplo.com
  24. CustomLog /var/log/apache2/ejemplo_access.log combined
  25. ErrorLog /var/log/apache2/ejemplo_error.log
  26.  
  27.  
  28. <Directory /var/www/ejemplo.com/public_html>
  29. Options -Indexes
  30. AllowOverride All
  31. Require all granted
  32. </Directory>
  33. </VirtualHost>
  34.  
  35.  
  36.  
  37. # Contexto de Directorio
  38. # Directiva global
  39. <Directory /var/www/ejemplo.com/private>
  40. Options -Indexes
  41. AuthType Basic
  42. AuthName "Área Restringida"
  43. AuthUserFile /etc/apache2/passwords/ejemplo.passwd
  44. Require valid-user
  45. </Directory>
  46.  
  47. # Contexto de Ubicación
  48. <Location /ubicacion-especial>
  49. CustomLog /var/log/apache2/ubicacion_especial_access.log combined
  50. ErrorLog /var/log/apache2/ubicacion_especial_error.log
  51. </Location>
  52.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement