-
-
Save jorgehs91/4deb0ac28b5ac71fdba4fadd24ccbf39 to your computer and use it in GitHub Desktop.
Revisions
-
Sorbog renamed this gist
Oct 29, 2017 . 1 changed file with 10 additions and 10 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,28 +1,28 @@ <VirtualHost *:80> ServerName magento2.dev SetEnv MAGE_RUN_CODE "base" SetEnv MAGE_RUN_TYPE "website" DocumentRoot "/var/www/html/magento2.dev/pub" <Directory "/var/www/html/magento2.dev/pub"> AllowOverride All Order Allow,Deny Allow from all </Directory> ErrorLog "/usr/local/var/log/httpd/magento2_error.log" CustomLog "/usr/local/var/log/httpd/magento2_access.log" combined </VirtualHost> <VirtualHost *:443> ServerName magento2.dev SetEnv MAGE_RUN_CODE "base" SetEnv MAGE_RUN_TYPE "website" DocumentRoot "/var/www/html/magento2.dev/pub" <Directory "/var/www/html/magento2.dev/pub"> AllowOverride All Order Allow,Deny Allow from all @@ -32,6 +32,6 @@ SSLCertificateFile "/usr/local/etc/httpd/server.crt" SSLCertificateKeyFile "/usr/local/etc/httpd/server.key" ErrorLog "/usr/local/var/log/httpd/magento2_error.log" CustomLog "/usr/local/var/log/httpd/magento2_access.log" combined </VirtualHost> -
Sorbog renamed this gist
Oct 29, 2017 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
Sorbog revised this gist
Oct 29, 2017 . 1 changed file with 6 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,9 @@ <VirtualHost *:80> ServerName magento.dev SetEnv MAGE_RUN_CODE "base" SetEnv MAGE_RUN_TYPE "website" DocumentRoot "/var/www/html/magento.dev/pub" <Directory "/var/www/html/magento.dev/pub"> AllowOverride All @@ -15,6 +18,9 @@ <VirtualHost *:443> ServerName magento.dev SetEnv MAGE_RUN_CODE "base" SetEnv MAGE_RUN_TYPE "website" DocumentRoot "/var/www/html/magento.dev/pub" <Directory "/var/www/html/magento.dev/pub"> AllowOverride All -
Sorbog created this gist
Oct 29, 2017 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,31 @@ <VirtualHost *:80> ServerName magento.dev DocumentRoot "/var/www/html/magento.dev/pub" <Directory "/var/www/html/magento.dev/pub"> AllowOverride All Order Allow,Deny Allow from all </Directory> ErrorLog "/usr/local/var/log/httpd/magento_error.log" CustomLog "/usr/local/var/log/httpd/magento_access.log" combined </VirtualHost> <VirtualHost *:443> ServerName magento.dev DocumentRoot "/var/www/html/magento.dev/pub" <Directory "/var/www/html/magento.dev/pub"> AllowOverride All Order Allow,Deny Allow from all </Directory> SSLEngine on SSLCertificateFile "/usr/local/etc/httpd/server.crt" SSLCertificateKeyFile "/usr/local/etc/httpd/server.key" ErrorLog "/usr/local/var/log/httpd/magento_error.log" CustomLog "/usr/local/var/log/httpd/magento_access.log" combined </VirtualHost>