You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by ig...@apache.org on 2012/06/15 10:33:29 UTC

svn commit: r1350528 - in /trafficserver/site/trunk/content/docs/trunk/admin/configuration-files: index.en.mdtext plugin.config.en.mdtext

Author: igalic
Date: Fri Jun 15 08:33:28 2012
New Revision: 1350528

URL: http://svn.apache.org/viewvc?rev=1350528&view=rev
Log:
Add a plugin.config document, thanks hungnv for reporting it as missing

Added:
    trafficserver/site/trunk/content/docs/trunk/admin/configuration-files/plugin.config.en.mdtext
Modified:
    trafficserver/site/trunk/content/docs/trunk/admin/configuration-files/index.en.mdtext

Modified: trafficserver/site/trunk/content/docs/trunk/admin/configuration-files/index.en.mdtext
URL: http://svn.apache.org/viewvc/trafficserver/site/trunk/content/docs/trunk/admin/configuration-files/index.en.mdtext?rev=1350528&r1=1350527&r2=1350528&view=diff
==============================================================================
--- trafficserver/site/trunk/content/docs/trunk/admin/configuration-files/index.en.mdtext (original)
+++ trafficserver/site/trunk/content/docs/trunk/admin/configuration-files/index.en.mdtext Fri Jun 15 08:33:28 2012
@@ -29,6 +29,7 @@ This section describes Traffic Server co
 * [log_hosts.config](log_hosts.config)
 * [logs_xml.config](logs_xml.config)
 * [parent.config](parent.config)
+* [plugin.config](plugin.config)
 * [volume.config](volume.config)
 * [records.config](records.config)
 * [remap.config](remap.config)

Added: trafficserver/site/trunk/content/docs/trunk/admin/configuration-files/plugin.config.en.mdtext
URL: http://svn.apache.org/viewvc/trafficserver/site/trunk/content/docs/trunk/admin/configuration-files/plugin.config.en.mdtext?rev=1350528&view=auto
==============================================================================
--- trafficserver/site/trunk/content/docs/trunk/admin/configuration-files/plugin.config.en.mdtext (added)
+++ trafficserver/site/trunk/content/docs/trunk/admin/configuration-files/plugin.config.en.mdtext Fri Jun 15 08:33:28 2012
@@ -0,0 +1,44 @@
+Title: plugin.config
+Doc: Configuration Files
+Notice:    Licensed to the Apache Software Foundation (ASF) under one
+           or more contributor license agreements.  See the NOTICE file
+           distributed with this work for additional information
+           regarding copyright ownership.  The ASF licenses this file
+           to you under the Apache License, Version 2.0 (the
+           "License"); you may not use this file except in compliance
+           with the License.  You may obtain a copy of the License at
+           .
+             http://www.apache.org/licenses/LICENSE-2.0
+           .
+           Unless required by applicable law or agreed to in writing,
+           software distributed under the License is distributed on an
+           "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+           KIND, either express or implied.  See the License for the
+           specific language governing permissions and limitations
+           under the License.
+Navigation: [*](*)
+
+The `plugin.config` file controls run-time loadable plugins available to
+the Traffic Server, as well as their configuration.
+
+# Example # {#example}
+
+     ::::text
+     # Comments start with a '#' and continue to the end of the line
+     # Blank lines are ignored
+     #
+     # test-plugin.so arg1 arg2 arg3
+     #
+     plugins/iwx/iwx.so
+     plugins/abuse/abuse.so etc/trafficserver/abuse.config
+     plugins/icx/icx.so etc/trafficserver/icx.config
+
+Each configuration line consists of a path to an `.so` file. This path can
+either be absolute, or relative to the plugin-directory (usually `/usr/local/libexec/trafficserver`).
+Such a line tells Traffic Server to load said plugin.
+
+A plugin can have any number of configuration parameters listed. Please
+refer to our [plugins' documentation](../plugins) for their reference.
+
+Plugins should only be listed *once*. The order in which the plugins are listed
+is also the order in which they are chained for the processing.