travis-apache 806 B

1234567891011121314151617181920212223242526
  1. <VirtualHost *:80>
  2. ServerAdmin webmaster@localhost
  3. ServerName localhost
  4. DocumentRoot /home/travis/build/chamilo/chamilo-lms
  5. <Directory "/home/travis/build/chamilo/chamilo-lms">
  6. Options Indexes FollowSymLinks MultiViews
  7. AllowOverride None
  8. Order allow,deny
  9. allow from all
  10. </Directory>
  11. ErrorLog ${APACHE_LOG_DIR}/localhost-error.log
  12. LogLevel warn
  13. CustomLog ${APACHE_LOG_DIR}/localhost-access.log combined
  14. # Wire up Apache to use Travis CI's php-fpm.
  15. <IfModule mod_fastcgi.c>
  16. AddHandler php5-fcgi .php
  17. Action php5-fcgi /php5-fcgi
  18. Alias /php5-fcgi /usr/lib/cgi-bin/php5-fcgi
  19. FastCgiExternalServer /usr/lib/cgi-bin/php5-fcgi -host 127.0.0.1:9000 -pass-header Authorization
  20. </IfModule>
  21. </VirtualHost>