0
|
1 <IfModule mod_ssl.c>
|
|
2 <VirtualHost *:443>
|
|
3 # The ServerName directive sets the request scheme, hostname and port that
|
|
4 # the server uses to identify itself. This is used when creating
|
|
5 # redirection URLs. In the context of virtual hosts, the ServerName
|
|
6 # specifies what hostname must appear in the request's Host: header to
|
|
7 # match this virtual host. For the default virtual host (this file) this
|
|
8 # value is not decisive as it is used as a last resort host regardless.
|
|
9 # However, you must set it for any further virtual host explicitly.
|
|
10 #ServerName www.example.com
|
|
11
|
|
12 ServerAdmin webmaster@localhost
|
|
13 DocumentRoot /var/www/html
|
|
14
|
|
15 ErrorLog ${APACHE_LOG_DIR}/error.log
|
|
16 CustomLog ${APACHE_LOG_DIR}/access.log combined
|
|
17
|
|
18 <Directory /var/www/html>
|
|
19 AllowOverride All
|
|
20 </Directory>
|
|
21 </VirtualHost>
|
|
22 </IfModule>
|