ispCP - Board - Support
SecRuleEngine Off Pfad für Domain, Sub und Alias - Printable Version

+- ispCP - Board - Support (http://www.isp-control.net/forum)
+-- Forum: ispCP Omega International Area (/forum-22.html)
+--- Forum: German Corner (/forum-26.html)
+--- Thread: SecRuleEngine Off Pfad für Domain, Sub und Alias (/thread-6155.html)



SecRuleEngine Off Pfad für Domain, Sub und Alias - fulltilt - 03-23-2009 01:04 AM

Ich muss für ein Drupal Project modsecurity2 excluden ...
Ist das so richtig mit dem Pfad?

PHP Code:
<LocationMatch "/domain.tld/htdocs/">
SecRuleEngine Off
</LocationMatch>

<
LocationMatch "/domain.tld/shop/htdocs/">
SecRuleEngine Off
</LocationMatch



RE: SecRuleEngine Off Pfad für Domain, Sub und Alias - fulltilt - 03-23-2009 08:39 PM

Hat wirklich niemand eine Lösung?
Der Pfad ist so nicht richtig ... klappt also nicht Sad
Code:
<LocationMatch "/domain.tld/htdocs/">
SecRuleEngine Off
</LocationMatch>

<LocationMatch "/domain.tld/shop/htdocs/">
SecRuleEngine Off
</LocationMatch>



RE: SecRuleEngine Off Pfad für Domain, Sub und Alias - Knut - 03-23-2009 09:04 PM

Ist das innerhalb des Virtualhosts ?

Ich denke der Match bezieht sich auf das was hinter der URL steht.

http://meine-domain.de/shop/

Code:
<LocationMatch "^/shop/*">
    ...
  </LocationMatch>

Also keine absoluten Pfade. http://www.uracad.kharkiv.edu/manual/de/mod/core.html#locationmatch

Gruß Knut


RE: SecRuleEngine Off Pfad für Domain, Sub und Alias - fulltilt - 03-23-2009 09:11 PM

Danke Knut,

und bei der Hauptdomain wäre es dann:
<LocationMatch "/domain.tld">
?

Gruss

(03-23-2009 09:04 PM)Knut Wrote:  Ist das innerhalb des Virtualhosts ?

Ich denke der Match bezieht sich auf das was hinter der URL steht.

http://meine-domain.de/shop/

Code:
<LocationMatch "^/shop/*">
    ...
  </LocationMatch>

Also keine absoluten Pfade. http://www.uracad.kharkiv.edu/manual/de/mod/core.html#locationmatch

Gruß Knut