mirror of
https://github.com/joomla-extensions/weblinks.git
synced 2024-11-01 03:12:29 +00:00
fc32eea69e
* Added PHP 7 support * Improved test system including multiple PHP versions * Removed unused php extensions * Improved Travis script readability
27 lines
735 B
Plaintext
27 lines
735 B
Plaintext
<VirtualHost *:80>
|
|
ServerAdmin webmaster@localhost
|
|
DocumentRoot %TRAVIS_BUILD_DIR%
|
|
|
|
<Directory />
|
|
Options FollowSymLinks
|
|
AllowOverride All
|
|
</Directory>
|
|
|
|
<Directory "%TRAVIS_BUILD_DIR%">
|
|
Options FollowSymLinks MultiViews ExecCGI
|
|
AllowOverride All
|
|
Order deny,allow
|
|
Allow from all
|
|
</Directory>
|
|
|
|
# Wire up Apache to use Travis CI's php-fpm.
|
|
<IfModule mod_fastcgi.c>
|
|
AddHandler php%PHPVERSION%-fcgi .php
|
|
Action php%PHPVERSION%-fcgi /php%PHPVERSION%-fcgi
|
|
Alias /php%PHPVERSION%-fcgi /usr/lib/cgi-bin/php%PHPVERSION%-fcgi
|
|
FastCgiExternalServer /usr/lib/cgi-bin/php%PHPVERSION%-fcgi -socket /tmp/php%PHPVERSION%-fpm.sock -pass-header Authorization
|
|
</IfModule>
|
|
|
|
ErrorLog ${APACHE_LOG_DIR}/error.log
|
|
</VirtualHost>
|