Skip to content

Instantly share code, notes, and snippets.

@zikosw
Created October 13, 2014 15:35
Show Gist options
  • Save zikosw/6701e8aee26f7897d5d9 to your computer and use it in GitHub Desktop.
Save zikosw/6701e8aee26f7897d5d9 to your computer and use it in GitHub Desktop.
apache ssl
<IfModule mod_ssl.c>
<VirtualHost _default_:443>
ServerAdmin supagorn@kmi.tl
ServerName CEDD
ServerAlias cedd.cloudapp.net
DocumentRoot /var/www/html/laravel/public
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
<Directory /var/www/html/laravel/public/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
SSLEngine on
SSLCertificateFile /etc/apache2/ssl/apache.crt
SSLCertificateKeyFile /etc/apache2/ssl/apache.key
<FilesMatch "\.(cgi|shtml|phtml|php)$">
SSLOptions +StdEnvVars
</FilesMatch>
<Directory /usr/lib/cgi-bin>
SSLOptions +StdEnvVars
</Directory>
BrowserMatch "MSIE [2-6]" \
nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0
BrowserMatch "MSIE [17-9]" ssl-unclean-shutdown
</VirtualHost>
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment