Apache stürzt ab, wenn ich die Far-Future Expires-Klausel aus dem Rails Guide hinzufüge

In einem Versuch, meine vorkompilierten Assets mit Apache zu bedienen, perdiese Rails Guide Ich versuche das zu ändern:

<VirtualHost *:82>
  ServerName localhost
  DocumentRoot "C:/RubyStack-3.2.5-0/projects/release_checklist/public"
  <Directory "C:/RubyStack-3.2.5-0/projects/release_checklist/public">
    Allow from all
    Options -MultiViews
  </Directory>
  ProxyPass / http://localhost:3001/
  ProxyPassReverse / http://localhost:3001/
  ProxyPreserveHost On  
</VirtualHost>

Dazu:

<VirtualHost *:82>
  ServerName localhost
  DocumentRoot "C:/RubyStack-3.2.5-0/projects/release_checklist/public"
  <Directory "C:/RubyStack-3.2.5-0/projects/release_checklist/public">
    Allow from all
    Options -MultiViews
  </Directory>
  ProxyPass / http://localhost:3001/
  ProxyPassReverse / http://localhost:3001/
  ProxyPreserveHost On

  <LocationMatch "^/assets/.*$">
    Header unset ETag
    FileETag None
    # RFC says only cache for 1 year
    ExpiresActive On
    ExpiresDefault "access plus 1 year"
  </LocationMatch>
</VirtualHost>

in meinemhttpd.conf Datei. Der Apache-Server wird jedoch nicht gestartet, wenn die zweite Option hinzugefügt wurde. Was mache ich falsch?

Antworten auf die Frage(1)

Ihre Antwort auf die Frage