Created
December 15, 2017 01:30
-
-
Save masterfermin02/17c81faab2cf27c57e05b9b5dd4d2c28 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Template for a VirtualHost with SSL | |
# Note: to use the template, rename it to /etc/apache2/vhost.d/yourvhost.conf. | |
# Files must have the .conf suffix to be loaded. | |
# | |
# See /usr/share/doc/packages/apache2/README.QUICKSTART for further hints | |
# about virtual hosts. | |
# NameVirtualHost statements should be added to /etc/apache2/listen.conf. | |
# | |
# This is the Apache server configuration file providing SSL support. | |
# It contains the configuration directives to instruct the server how to | |
# serve pages over an https connection. For detailing information about these | |
# directives see http://httpd.apache.org/docs/2.4/mod/mod_ssl.html | |
# | |
# Do NOT simply read the instructions in here without understanding | |
# what they do. They're here only as hints or reminders. If you are unsure | |
# consult the online docs. You have been warned. | |
# | |
<IfDefine SSL> | |
<IfDefine !NOSSL> | |
## | |
## SSL Virtual Host Context | |
## | |
<VirtualHost _default_:443> | |
# General setup for the virtual host | |
DocumentRoot "/srv/www/htdocs" | |
#ServerName www.example.com:443 | |
#ServerAdmin [email protected] | |
ErrorLog /var/log/apache2/error_log | |
TransferLog /var/log/apache2/access_log | |
# SSL Engine Switch: | |
# Enable/Disable SSL for this virtual host. | |
SSLEngine on | |
# You can use per vhost certificates if SNI is supported. | |
SSLCertificateFile /etc/apache2/ssl/apache.crt | |
SSLCertificateKeyFile /etc/apache2/ssl/apache.key | |
#SSLCertificateChainFile /etc/apache2/ssl.crt/vhost-example-chain.crt | |
# Per-Server Logging: | |
# The home of a custom SSL log file. Use this when you want a | |
# compact non-error SSL logfile on a virtual host basis. | |
CustomLog /var/log/apache2/ssl_request_log ssl_combined | |
</VirtualHost> | |
</IfDefine> | |
</IfDefine> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment