[-]
[+]
|
Changed |
mod_security-ix.spec
|
|
[-]
[+]
|
Added |
00_mod_security.conf.suse
^
|
@@ -0,0 +1,18 @@
+# Example configuration file for the mod_security Apache module
+
+#LoadModule security2_module modules/mod_security2.so
+#LoadModule unique_id_module modules/mod_unique_id.so
+# run:
+# a2enmod unique_id
+# a2enmod security2
+
+<IfModule mod_security2.c>
+ # This is the ModSecurity Core Rules Set.
+
+ # Basic configuration goes in here
+ Include /etc/apache2/modsecurity.d/modsecurity_crs_10_config.conf
+
+ # Rule management is handled by ASL
+ Include /etc/apache2/modsec/*asl*.conf
+
+</IfModule>
|