-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvhost-itgal-https.conf
28 lines (24 loc) · 1.05 KB
/
vhost-itgal-https.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
<IfModule mod_ssl.c>
<VirtualHost *:443>
ServerName web.itgal.es
ServerAdmin [email protected]
DocumentRoot /var/www/html
SSLEngine on
SSLCertificateFile /certificados/itgal.es_ssl_certificate.cer
SSLCertificateKeyFile /certificados/itgal.es_private_key.key
<Directory /var/www/html>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
<FilesMatch "\.(cgi|shtml|phtml|php)$">
SSLOptions +StdEnvVars
</FilesMatch>
<Directory /usr/lib/cgi-bin>
SSLOptions +StdEnvVars
</Directory>
ErrorLog ${APACHE_LOG_DIR}/itgal-https-error.log
CustomLog ${APACHE_LOG_DIR}/itgal-https-access.log combined
</VirtualHost>
</IfModule>