X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/2bd82aacbc85ed4957bef6872d87ff6bc2344f89..e92ed5e09215d67f2bd7dc21a32425d7ec5aa26f:/cookbooks/otrs/templates/default/apache.erb
diff --git a/cookbooks/otrs/templates/default/apache.erb b/cookbooks/otrs/templates/default/apache.erb
index 0a8735c50..e51b83ea2 100644
--- a/cookbooks/otrs/templates/default/apache.erb
+++ b/cookbooks/otrs/templates/default/apache.erb
@@ -7,11 +7,11 @@
<% end -%>
ServerAdmin webmaster@openstreetmap.org
- CustomLog /var/log/apache2/<%= @name %>-access.log combined
+ CustomLog /var/log/apache2/<%= @name %>-access.log combined_extended
ErrorLog /var/log/apache2/<%= @name %>-error.log
RedirectPermanent /.well-known/acme-challenge/ http://acme.openstreetmap.org/.well-known/acme-challenge/
- RedirectPermanent / https://otrs.openstreetmap.org/
+ RedirectPermanent / https://<%= @name %>/
<% unless @aliases.empty? -%>
@@ -26,7 +26,7 @@
SSLCertificateFile /etc/ssl/certs/<%= @name %>.pem
SSLCertificateKeyFile /etc/ssl/private/<%= @name %>.key
- CustomLog /var/log/apache2/<%= @name %>-access.log combined
+ CustomLog /var/log/apache2/<%= @name %>-access.log combined_extended
ErrorLog /var/log/apache2/<%= @name %>-error.log
RedirectPermanent / https://<%= @name %>/
@@ -37,22 +37,23 @@
ServerName <%= @name %>
ServerAdmin webmaster@openstreetmap.org
- CustomLog /var/log/apache2/<%= @name %>-access.log combined
+ CustomLog /var/log/apache2/<%= @name %>-access.log combined_extended
ErrorLog /var/log/apache2/<%= @name %>-error.log
SSLEngine on
SSLCertificateFile /etc/ssl/certs/<%= @name %>.pem
SSLCertificateKeyFile /etc/ssl/private/<%= @name %>.key
- ScriptAlias /otrs/ /opt/otrs/bin/cgi-bin/
- Alias /otrs-web/ /opt/otrs/var/httpd/htdocs/
+ Protocols http/1.1
+
+ ScriptAlias /otrs "/usr/share/otrs/bin/cgi-bin/"
+ Alias /otrs-web "/usr/share/otrs/var/httpd/htdocs/"
RedirectMatch ^/$ /otrs/index.pl
- PerlRequire /opt/otrs/scripts/apache2-perl-startup.pl
+ Perlrequire /usr/share/otrs/scripts/apache2-perl-startup.pl
PerlModule Apache2::Reload
PerlInitHandler Apache2::Reload
- PerlModule Apache2::RequestRec
ErrorDocument 403 /otrs/index.pl
@@ -70,25 +71,45 @@
-
- AllowOverride None
- Options +ExecCGI -Includes
- Require all granted
+
+ AllowOverride None
+ Options +ExecCGI -Includes
+ Require all granted
-
+
AllowOverride None
Require all granted
+
+ # Make sure CSS and JS files are read as UTF8 by the browsers.
+ AddCharset UTF-8 .css
+ AddCharset UTF-8 .js
+
+ # Set explicit mime type for woff fonts since it is relatively new and apache may not know about it.
+ AddType application/font-woff .woff
+
+
+# Cache css-cache for 30 days
+
+
+ Header set Cache-Control "max-age=2592000, must-revalidate"
+
+
+
+
+
+ Header set Cache-Control "max-age=14400, must-revalidate"
+
-
-
- Header set Cache-Control "max-age=2592000 must-revalidate"
-
+
+
+ Header set Cache-Control "max-age=2592000, must-revalidate"
+
-
-
- Header set Cache-Control "max-age=2592000 must-revalidate"
-
+
+
+ Header set Cache-Control "max-age=14400, must-revalidate"
+