renewal 586 B

123456789101112131415161718192021222324
  1. <VirtualHost *:80>
  2. ServerName www.hory.me
  3. DocumentRoot /var/www/renewal
  4. <Directory />
  5. Options FollowSymLinks
  6. AllowOverride None
  7. </Directory>
  8. <Directory /var/www/renewal>
  9. Options Indexes FollowSymLinks MultiViews
  10. AllowOverride None
  11. Order allow,deny
  12. allow from all
  13. </Directory>
  14. ErrorLog ${APACHE_LOG_DIR}/renewal-error.log
  15. # Possible values include: debug, info, notice, warn, error, crit,
  16. # alert, emerg.
  17. LogLevel warn
  18. CustomLog ${APACHE_LOG_DIR}/renewal-access.log combined
  19. </VirtualHost>