Created
February 28, 2019 06:49
-
-
Save aamnah/2f7546d16fea5c231d1c45738caaede1 to your computer and use it in GitHub Desktop.
Virtual Host conf for SSL enabled site
This file contains 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
# domain: example.com | |
# public: /var/www/example.com/public_html/ | |
# logs: /var/www/example.com/logs/ | |
<VirtualHost *:443> | |
# Admin email, Server Name (domain name), and any aliases | |
ServerAdmin [email protected] | |
ServerName example.com | |
#ServerAlias example.com | |
SSLEngine on | |
SSLCertificateFile /etc/apache2/cert/example.com.crt | |
SSLCertificateKeyFile /etc/apache2/cert/example.com.key | |
SSLCertificateChainFile /etc/apache2/cert/intermediate.crt | |
<IfVersion >= 2.4.8 > | |
SSLCACertificateFile /etc/apache2/cert/intermediate.crt | |
</IfVersion> | |
# Index file and Document Root (where the public files are located) | |
DirectoryIndex index.php index.html | |
DocumentRoot /var/www/example.com/public_html | |
# Allow .htaccess and Rewrites | |
<Directory /var/www/example.com/public_html> | |
Options FollowSymLinks | |
AllowOverride All | |
</Directory> | |
# Log file locations | |
LogLevel warn | |
ErrorLog /var/www/example.com/logs/error.log | |
CustomLog /var/www/example.com/logs/access.log combined | |
# Custom php.ini path | |
# PHPINIDir /var/www/example.com/public_html/ | |
</VirtualHost> | |
<VirtualHost *:80> | |
ServerName example.com | |
# Redirect all HTTP to HTTPS | |
Redirect permanent / https://example.com/ | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment