Advertisement
Guest User

Untitled

a guest
Apr 28th, 2015
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. <VirtualHost *:80>
  2. #ServerName dominio.com
  3. #ServerAlias www.dominio.com
  4. ServerAdmin webmaster@dominio.com
  5. DocumentRoot /var/www/cuidum/public
  6.  
  7. <Directory /var/www/cuidum/public>
  8. Options Indexes FollowSymLinks MultiViews
  9. AllowOverride All
  10. Require all granted
  11. </Directory>
  12. # Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
  13. # error, crit, alert, emerg.
  14. # It is also possible to configure the loglevel for particular
  15. # modules, e.g.
  16. #LogLevel info ssl:warn
  17. ErrorLog ${APACHE_LOG_DIR}/error.log
  18. CustomLog ${APACHE_LOG_DIR}/access.log combined
  19. # For most configuration files from conf-available/, which are
  20. # enabled or disabled at a global level, it is possible to
  21. # include a line for only one particular virtual host. For example the
  22. # following line enables the CGI configuration for this host only
  23. # after it has been globally disabled with "a2disconf".
  24. #Include conf-available/serve-cgi-bin.conf
  25. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement