21d0d69b4f
It looks like RewriteLog will no longer work with Apache 2.4 and later. RewriteLog Those familiar with earlier versions of mod_rewrite will no doubt be looking for the RewriteLog and RewriteLogLevel directives. This functionality has been completely replaced by the new per-module logging configuration mentioned above. http://httpd.apache.org/docs/current/mod/mod_rewrite.html All lines removed were commented out, so there should be no change in behaviour or side effects. To test. - Verify every mention of RewriteLog has been removed from Koha - Verify patch by reading it Signed-off-by: David Nind <david@davidnind.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
64 lines
2.5 KiB
Text
64 lines
2.5 KiB
Text
# Koha instance __KOHASITE__ Apache config.
|
|
|
|
# redirect http to https
|
|
#<VirtualHost *:80> #nohttps
|
|
# ServerName __OPACSERVER__ #nohttps
|
|
# ServerAlias __INTRASERVER__ #nohttps
|
|
# RewriteEngine On #nohttps
|
|
# RewriteCond %{HTTPS} !=on #nohttps
|
|
# RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R,L] #nohttps
|
|
#</VirtualHost> #nohttps
|
|
|
|
# OPAC
|
|
<VirtualHost *:80> #https
|
|
# SSLEngine on
|
|
# SSLProtocol +TLSv1.2 +TLSv1.1 +TLSv1
|
|
# SSLCompression off
|
|
# SSLHonorCipherOrder on
|
|
# SSLCipherSuite "ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-SA-
|
|
# SSLCertificateKeyFile /etc/letsencrypt/live/__OPACSERVER__/privkey.pem
|
|
# SSLCertificateFile /etc/letsencrypt/live/__OPACSERVER__/cert.pem
|
|
# SSLCertificateChainFile /etc/letsencrypt/live/__OPACSERVER__/chain.pem
|
|
|
|
<IfVersion >= 2.4>
|
|
Define instance "__KOHASITE__"
|
|
</IfVersion>
|
|
Include /etc/koha/apache-shared.conf
|
|
# Include /etc/koha/apache-shared-disable.conf
|
|
# Include /etc/koha/apache-shared-opac-plack.conf
|
|
Include /etc/koha/apache-shared-opac.conf
|
|
|
|
ServerName __OPACSERVER__
|
|
SetEnv KOHA_CONF "/etc/koha/sites/__KOHASITE__/koha-conf.xml"
|
|
AssignUserID __UNIXUSER__ __UNIXGROUP__
|
|
|
|
ErrorLog /var/log/koha/__KOHASITE__/opac-error.log
|
|
# TransferLog /var/log/koha/__KOHASITE__/opac-access.log
|
|
</VirtualHost>
|
|
|
|
# Intranet
|
|
<VirtualHost *:80> #https
|
|
# SSLEngine on
|
|
# SSLProtocol +TLSv1.2 +TLSv1.1 +TLSv1
|
|
# SSLCompression off
|
|
# SSLHonorCipherOrder on
|
|
# SSLCipherSuite "ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES
|
|
# SSLCertificateKeyFile /etc/letsencrypt/live/__OPACSERVER__/privkey.pem
|
|
# SSLCertificateFile /etc/letsencrypt/live/__OPACSERVER__/cert.pem
|
|
# SSLCertificateChainFile /etc/letsencrypt/live/__OPACSERVER__/chain.pem
|
|
|
|
<IfVersion >= 2.4>
|
|
Define instance "__KOHASITE__"
|
|
</IfVersion>
|
|
Include /etc/koha/apache-shared.conf
|
|
# Include /etc/koha/apache-shared-disable.conf
|
|
# Include /etc/koha/apache-shared-intranet-plack.conf
|
|
Include /etc/koha/apache-shared-intranet.conf
|
|
|
|
ServerName __INTRASERVER__
|
|
SetEnv KOHA_CONF "/etc/koha/sites/__KOHASITE__/koha-conf.xml"
|
|
AssignUserID __UNIXUSER__ __UNIXGROUP__
|
|
|
|
ErrorLog /var/log/koha/__KOHASITE__/intranet-error.log
|
|
# TransferLog /var/log/koha/__KOHASITE__/intranet-access.log
|
|
</VirtualHost>
|