forked from OpenConext/Stepup-tiqr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
travis-ci-apache.conf
31 lines (25 loc) · 972 Bytes
/
travis-ci-apache.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<VirtualHost *:443>
ServerName tiqr.example.com
DocumentRoot %TRAVIS_BUILD_DIR%/web
SSLEngine on
SSLCipherSuite AES256+EECDH:AES256+EDH
SSLProtocol All -SSLv2 -SSLv3
SSLHonorCipherOrder On
SSLCompression off
SSLCertificateFile /etc/ssl/certs/gssp.crt
SSLCertificateKeyFile /etc/ssl/certs/gssp.key
<Directory "%TRAVIS_BUILD_DIR%/web">
Options FollowSymLinks MultiViews ExecCGI
AllowOverride All
Require all granted
</Directory>
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>
ErrorLog %TRAVIS_BUILD_DIR%/error.log
CustomLog %TRAVIS_BUILD_DIR%/access.log combined
</VirtualHost>