Fuente: https://github.com/chamilo/chamilo-lms/releases/download/v1.11.40/chamilo-1.11.40.zip sha256: 1cf4bf2cc7bae1ef1a1eff643235db1d552f78ddf4b6dd1e2d2dac9868679439 Snapshot independiente (rama huerfana); diffable vs 1.11.38. vendor incluido.
22 lines
701 B
Plaintext
22 lines
701 B
Plaintext
<VirtualHost *:80>
|
|
DocumentRoot %TRAVIS_BUILD_DIR%/test/Client/_files
|
|
|
|
<Directory "%TRAVIS_BUILD_DIR%/test/Client/_files/">
|
|
Options FollowSymLinks MultiViews ExecCGI
|
|
AllowOverride All
|
|
Require all granted
|
|
</Directory>
|
|
|
|
# Wire up Apache to use Travis CI's php-fpm.
|
|
<IfModule mod_fastcgi.c>
|
|
AddHandler php%PHP_VERSION%-fcgi .php
|
|
Action php%PHP_VERSION%-fcgi /php%PHP_VERSION%-fcgi
|
|
Alias /php%PHP_VERSION%-fcgi /usr/lib/cgi-bin/php%PHP_VERSION%-fcgi
|
|
FastCgiExternalServer /usr/lib/cgi-bin/php%PHP_VERSION%-fcgi -host 127.0.0.1:9000 -pass-header Authorization
|
|
|
|
<Directory /usr/lib/cgi-bin>
|
|
Require all granted
|
|
</Directory>
|
|
</IfModule>
|
|
</VirtualHost>
|