<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://onnocenter.or.id/wiki/index.php?action=history&amp;feed=atom&amp;title=IronBee%3A_Konfigurasi</id>
	<title>IronBee: Konfigurasi - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://onnocenter.or.id/wiki/index.php?action=history&amp;feed=atom&amp;title=IronBee%3A_Konfigurasi"/>
	<link rel="alternate" type="text/html" href="https://onnocenter.or.id/wiki/index.php?title=IronBee:_Konfigurasi&amp;action=history"/>
	<updated>2026-05-04T00:22:33Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.35.4</generator>
	<entry>
		<id>https://onnocenter.or.id/wiki/index.php?title=IronBee:_Konfigurasi&amp;diff=42514&amp;oldid=prev</id>
		<title>Onnowpurbo: New page: Example Trafficserver Configuration   # Insert this into trafficserver's plugin.config.  # Adjust paths as appropriate for your  installation.    # First we need to load libraries the Iron...</title>
		<link rel="alternate" type="text/html" href="https://onnocenter.or.id/wiki/index.php?title=IronBee:_Konfigurasi&amp;diff=42514&amp;oldid=prev"/>
		<updated>2015-02-23T00:55:02Z</updated>

		<summary type="html">&lt;p&gt;New page: Example Trafficserver Configuration   # Insert this into trafficserver&amp;#039;s plugin.config.  # Adjust paths as appropriate for your  installation.    # First we need to load libraries the Iron...&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Example Trafficserver Configuration&lt;br /&gt;
&lt;br /&gt;
 # Insert this into trafficserver's plugin.config.&lt;br /&gt;
 # Adjust paths as appropriate for your  installation.&lt;br /&gt;
 &lt;br /&gt;
 # First we need to load libraries the Ironbee  plugin relies on.&lt;br /&gt;
 libloader.so /usr/local/ironbee/libexec/libironbee.so&lt;br /&gt;
 &lt;br /&gt;
 # Now we can load the ironbee plugin.  The argument to this is ironbee's&lt;br /&gt;
 # configuration file: see ironbee-config.txt&lt;br /&gt;
 /usr/local/ironbee/libexec/ts_ironbee.so /usr/local/trafficserver/etc/ironbee.conf&lt;br /&gt;
&lt;br /&gt;
 #We could also use options to the ts_ironbee load line:&lt;br /&gt;
 #  -l name   to specify a different filename for ironbee log messages.&lt;br /&gt;
 #  -v n      to set the initial log level for Ironbee messages.&lt;br /&gt;
 #  -L        to disable the trafficserver logging altogether&lt;br /&gt;
&lt;br /&gt;
Example Apache Configuration&lt;br /&gt;
&lt;br /&gt;
 LoadModule ironbee_module /usr/local/ironbee/libexec/mod_ironbee.so&lt;br /&gt;
 &lt;br /&gt;
 # IfModule serves for distributions using certain kinds of&lt;br /&gt;
 # configuration tool.  It's not useful for individual configurations,&lt;br /&gt;
 # and may make troubleshooting harder.&lt;br /&gt;
 &lt;br /&gt;
 &amp;lt;IfModule ironbee_module&amp;gt;&lt;br /&gt;
     IronbeeConfigFile /usr/local/ironbee/etc/ironbee.conf&lt;br /&gt;
 &lt;br /&gt;
     #Further directives available but having defaults (shown here)&lt;br /&gt;
     #likely to work for most users&lt;br /&gt;
     IronbeeRawHeaders On&lt;br /&gt;
     IronbeeLog On&lt;br /&gt;
     IronbeeLogLevel 4&lt;br /&gt;
 &amp;lt;/IfModule&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Example IronBee Configuration&lt;br /&gt;
&lt;br /&gt;
 ### Logging&lt;br /&gt;
 # Log level (standard syslog levels with additional debug2 and debug3)&lt;br /&gt;
LogLevel info&lt;br /&gt;
 # The log is really only valid for clipp as the servers&lt;br /&gt;
 # will utilize their own native logging facilities.&lt;br /&gt;
 Log debug.log&lt;br /&gt;
&lt;br /&gt;
 ### Sensor Info&lt;br /&gt;
 SensorId 80ECD8CF-318C-4915-A8C2-B3AAE315FB0C&lt;br /&gt;
&lt;br /&gt;
 ### Load Modules&lt;br /&gt;
 # Standard support modules&lt;br /&gt;
 LoadModule &amp;quot;ibmod_htp.so&amp;quot;&lt;br /&gt;
 LoadModule &amp;quot;ibmod_pcre.so&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 # ### Lua Modules&lt;br /&gt;
 # # Lua Support&lt;br /&gt;
 # LoadModule &amp;quot;ibmod_lua.so&amp;quot;&lt;br /&gt;
 #&lt;br /&gt;
 # # Event Processor&lt;br /&gt;
 # LuaLoadModule &amp;quot;event_processor.lua&amp;quot;&lt;br /&gt;
 # EventProcessorCategoryFilter FOO 60&lt;br /&gt;
 # EventProcessorCategoryFilter BAR 50&lt;br /&gt;
 # EventProcessorCategoryFilter BOO 75&lt;br /&gt;
 # EventProcessorCategoryFilter EEK 75&lt;br /&gt;
 #&lt;br /&gt;
 # # Threat Level&lt;br /&gt;
 # LuaLoadModule &amp;quot;threat_level.lua&amp;quot;&lt;br /&gt;
 # ThreatLevelMinConfidence 25&lt;br /&gt;
 &lt;br /&gt;
 # IronBee Rule Language&lt;br /&gt;
 LoadModule &amp;quot;ibmod_rules.so&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 ### Auditing&lt;br /&gt;
 AuditEngine RelevantOnly&lt;br /&gt;
 AuditLogIndex None&lt;br /&gt;
 AuditLogBaseDir /tmp/ironbee&lt;br /&gt;
 AuditLogSubDirFormat &amp;quot;%Y%m%d-%H%M&amp;quot;&lt;br /&gt;
 AuditLogDirMode 0755&lt;br /&gt;
 AuditLogFileMode 0644&lt;br /&gt;
 AuditLogParts all&lt;br /&gt;
 &lt;br /&gt;
 ### Buffering&lt;br /&gt;
 RequestBuffering On&lt;br /&gt;
 ResponseBuffering On&lt;br /&gt;
 &lt;br /&gt;
 ### Rule Diagnostics Logging&lt;br /&gt;
 RuleEngineLogData all&lt;br /&gt;
 RuleEngineLogLevel info&lt;br /&gt;
  &lt;br /&gt;
 &lt;br /&gt;
 #  ===============================================================================&lt;br /&gt;
 # Rules&lt;br /&gt;
 #  ===============================================================================&lt;br /&gt;
 # ===============================================================================&lt;br /&gt;
 ### Test Rules&lt;br /&gt;
 # This rule will block if a &amp;quot;blockme&amp;quot; parameter (with any value) is in the request&lt;br /&gt;
 Rule ARGS:blockme.count() @ne 0 id:test/blockme  rev:1 phase:REQUEST &amp;quot;msg:Test blocking&amp;quot; tag:TestRules event block&lt;br /&gt;
&lt;br /&gt;
 ### Default Blocking Rules&lt;br /&gt;
 # These rule detect any advisory blocks and perform the&lt;br /&gt;
 # actual block.&lt;br /&gt;
 Rule FLAGS:block @ne 0 id:block/request_header rev:1 phase:REQUEST_HEADER &amp;quot;msg:Blocking request header&amp;quot; tag:BlockingMode block:phase&lt;br /&gt;
 Rule FLAGS:block @ne 0 id:block/request rev:1 phase:REQUEST &amp;quot;msg:Blocking request&amp;quot; tag:BlockingMode block:phase&lt;br /&gt;
 Rule FLAGS:block @ne 0 id:block/response_header rev:1 phase:RESPONSE_HEADER &amp;quot;msg:Blocking response header&amp;quot; tag:BlockingMode block:phase&lt;br /&gt;
 # ===============================================================================&lt;br /&gt;
 # ===============================================================================&lt;br /&gt;
&lt;br /&gt;
 ### Sites&lt;br /&gt;
 # Default&lt;br /&gt;
 &amp;lt;Site default&amp;gt;&lt;br /&gt;
     SiteId 0CA1665C-F27F-4763-A3E0-A31A00477497&lt;br /&gt;
     Service *:*&lt;br /&gt;
     Hostname *&lt;br /&gt;
 &lt;br /&gt;
     # Enable rules from the main context&lt;br /&gt;
     RuleEnable tag:TestRules&lt;br /&gt;
     RuleEnable tag:BlockingMode&lt;br /&gt;
 &amp;lt;/Site&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Referensi==&lt;br /&gt;
&lt;br /&gt;
* https://www.ironbee.com/docs/manual/ironbee-reference-manual.html#chapter.installation-guide&lt;/div&gt;</summary>
		<author><name>Onnowpurbo</name></author>
	</entry>
</feed>