|
<IfModule mod_ssl.c>
|
|
<VirtualHost _default_:443>
|
|
ServerAdmin webmaster@localhost
|
|
|
|
DocumentRoot /var/www/mw-category-readability/public
|
|
|
|
<Directory "/var/www/mw-category-readability/public">
|
|
RewriteEngine On
|
|
RewriteEngine On
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteRule ^ index.php [QSA,L]
|
|
# RewriteBase "/myapp/"
|
|
# RewriteRule "^index\.html$" "welcome.html"
|
|
</Directory>
|
|
|
|
|
|
ErrorLog ${APACHE_LOG_DIR}/error.log
|
|
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
|
|
|
|
|
# SSL Engine Switch:
|
|
# Enable/Disable SSL for this virtual host.
|
|
SSLEngine on
|
|
|
|
# If both key and certificate are stored in the same file, only the
|
|
# SSLCertificateFile directive is needed.
|
|
SSLCertificateFile /etc/letsencrypt/live/wikimedia.p1k3.com/cert.pem
|
|
SSLCertificateKeyFile /etc/letsencrypt/live/wikimedia.p1k3.com/privkey.pem
|
|
|
|
# Server Certificate Chain:
|
|
# Point SSLCertificateChainFile at a file containing the
|
|
# concatenation of PEM encoded CA certificates which form the
|
|
# certificate chain for the server certificate. Alternatively
|
|
# the referenced file can be the same as SSLCertificateFile
|
|
# when the CA certificates are directly appended to the server
|
|
# certificate for convinience.
|
|
SSLCertificateChainFile /etc/letsencrypt/live/wikimedia.p1k3.com/chain.pem
|
|
|
|
<FilesMatch "\.(cgi|shtml|phtml|php)$">
|
|
SSLOptions +StdEnvVars
|
|
</FilesMatch>
|
|
</VirtualHost>
|
|
</IfModule>
|