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
<VirtualHost *:80> | |
ServerName my-domaine.fr | |
Redirect permanent / https://my-domaine.fr | |
</VirtualHost> | |
<VirtualHost *:443> | |
ServerName my-domaine.fr | |
DocumentRoot /myfolder/web | |
SSLEngine on | |
SSLProtocol all -SSLv2 -SSLv3 | |
SSLCipherSuite ALL:!DH:!EXPORT:!RC4:+HIGH:+MEDIUM:!LOW:!aNULL:!eNULL | |
SSLCertificateFile /etc/apache2/ssl/2_mydomain.fr.crt | |
SSLCertificateKeyFile /etc/apache2/ssl/mydomain.key | |
SSLCertificateChainFile /etc/apache2/ssl/1_root_bundle.crt | |
<Directory /myfolder/web> | |
##to restric with htaccess | |
#AuthType Basic | |
#AuthName "Restricted Content" | |
#AuthUserFile /myfolder/.htpasswd | |
#Require valid-user | |
Options Indexes FollowSymLinks MultiViews | |
AllowOverride None | |
Order allow,deny | |
allow from all | |
<IfModule mod_rewrite.c> | |
Options -MultiViews | |
RewriteEngine On | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteRule ^(.*)$ app.php [QSA,L] | |
</IfModule> | |
</Directory> | |
<Directory /myfolder/web/uploads/thumbs> | |
<IfModule mod_rewrite.c> | |
RewriteEngine Off | |
</IfModule> | |
</Directory> | |
ErrorLog /var/log/apache2/error.log | |
CustomLog /var/log/apache2/symfony_access.log combined | |
<IfModule mod_expires.c> | |
ExpiresActive On | |
ExpiresDefault "access plus 86400 seconds" | |
ExpiresByType image/jpg "access plus 1 week" | |
ExpiresByType image/jpeg "access plus 1 week" | |
ExpiresByType image/png "access plus 1 week" | |
ExpiresByType image/gif "access plus 1 week" | |
ExpiresByType image/svg+xml "access plus 1 week" | |
AddType image/x-icon .ico | |
ExpiresByType image/ico "access plus 1 week" | |
ExpiresByType image/icon "access plus 1 week" | |
ExpiresByType image/x-icon "access plus 1 week" | |
ExpiresByType text/css "access plus 1 week" | |
ExpiresByType text/javascript "access plus 1 week" | |
ExpiresByType text/html "access plus 86400 seconds" | |
ExpiresByType application/xhtml+xml "access plus 86400 seconds" | |
ExpiresByType application/javascript "access plus 1 week" | |
ExpiresByType application/x-javascript "access plus 1 week" | |
ExpiresByType application/x-shockwave-flash "access plus 1 week" | |
ExpiresByType image/jpg "access plus 1 week" | |
ExpiresByType image/jpeg "access plus 1 week" | |
ExpiresByType image/png "access plus 1 week" | |
ExpiresByType image/gif "access plus 1 week" | |
ExpiresByType image/svg+xml "access plus 1 week" | |
AddType image/x-icon .ico | |
ExpiresByType image/ico "access plus 1 week" | |
ExpiresByType image/icon "access plus 1 week" | |
ExpiresByType image/x-icon "access plus 1 week" | |
ExpiresByType text/css "access plus 1 week" | |
ExpiresByType text/javascript "access plus 1 week" | |
ExpiresByType text/html "access plus 86400 seconds" | |
ExpiresByType application/xhtml+xml "access plus 86400 seconds" | |
ExpiresByType application/javascript "access plus 1 week" | |
ExpiresByType application/x-javascript "access plus 1 week" | |
ExpiresByType application/x-shockwave-flash "access plus 1 week" | |
</IfModule> | |
<IfModule mod_headers.c> | |
<FilesMatch "\\.(ico|jpe?g|png|gif|swf)$"> | |
Header set Cache-Control "max-age=604800, public" | |
</FilesMatch> | |
<FilesMatch "\\.(css)$"> | |
Header set Cache-Control "max-age=604800, public" | |
</FilesMatch> | |
<FilesMatch "\\.(js)$"> | |
Header set Cache-Control "max-age=604800, private" | |
</FilesMatch> | |
</IfModule> | |
<IfModule mod_deflate.c> | |
SetOutputFilter DEFLATE | |
DeflateCompressionLevel 9 | |
</IfModule> | |
<Location /> | |
AddOutputFilterByType DEFLATE text/plain | |
AddOutputFilterByType DEFLATE text/xml | |
AddOutputFilterByType DEFLATE text/html | |
AddOutputFilterByType DEFLATE text/css | |
AddOutputFilterByType DEFLATE image/svg+xml | |
AddOutputFilterByType DEFLATE application/xhtml+xml | |
AddOutputFilterByType DEFLATE application/xml | |
AddOutputFilterByType DEFLATE application/rss+xml | |
AddOutputFilterByType DEFLATE application/atom_xml | |
AddOutputFilterByType DEFLATE application/x-javascript | |
# Pour les proxies | |
Header append Vary User-Agent env=!dont-vary | |
</Location> | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment