Created
June 5, 2017 16:30
-
-
Save AlexisLeon/c34c433901af886df77b354b49f811ec 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
<VirtualHost *:443> | |
ServerName google.com.mx | |
ServerAdmin [email protected] | |
DocumentRoot /var/www/html/app/public | |
<Directory /var/www/html/app> | |
AllowOverride All | |
</Directory> | |
ErrorLog ${APACHE_LOG_DIR}/error.log | |
CustomLog ${APACHE_LOG_DIR}/access.log combined | |
SSLEngine on | |
SSLCertificateFile /var/www/certs/d845d98d7108a33f.crt | |
SSLCertificateKeyFile /var/www/certs/www.google.com | |
SSLCertificateChainFile /var/www/certs/gd_bundle-g2-g1.crt | |
</VirtualHost> | |
<VirtualHost *:80> | |
ServerName localhost | |
ServerAdmin [email protected] | |
DocumentRoot /var/www/html/app/public | |
<Directory /var/www/html/app> | |
AllowOverride All | |
</Directory> | |
ErrorLog ${APACHE_LOG_DIR}/error.log | |
CustomLog ${APACHE_LOG_DIR}/access.log combined | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment