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 2011/04/04 06:57:56 UTC

svn commit: r1088475 - in /trafficserver/site/branches/ats-cms/content/docs/trunk/admin: configuration-files/records.config.en.mdtext security-options/index.en.mdtext

Author: igalic
Date: Mon Apr  4 04:57:55 2011
New Revision: 1088475

URL: http://svn.apache.org/viewvc?rev=1088475&view=rev
Log:
[TS-641] Remove a bunch of Web UI related configs

Modified:
    trafficserver/site/branches/ats-cms/content/docs/trunk/admin/configuration-files/records.config.en.mdtext
    trafficserver/site/branches/ats-cms/content/docs/trunk/admin/security-options/index.en.mdtext

Modified: trafficserver/site/branches/ats-cms/content/docs/trunk/admin/configuration-files/records.config.en.mdtext
URL: http://svn.apache.org/viewvc/trafficserver/site/branches/ats-cms/content/docs/trunk/admin/configuration-files/records.config.en.mdtext?rev=1088475&r1=1088474&r2=1088475&view=diff
==============================================================================
--- trafficserver/site/branches/ats-cms/content/docs/trunk/admin/configuration-files/records.config.en.mdtext (original)
+++ trafficserver/site/branches/ats-cms/content/docs/trunk/admin/configuration-files/records.config.en.mdtext Mon Apr  4 04:57:55 2011
@@ -235,22 +235,6 @@ the `records.config` file.
 :  The maximum number of copies of rolled configuration files to
    keep.
 
-*`proxy.config.admin.admin_password`*
-:  `STRING`
-:  Specifies the encrypted administrator password that controls access
-   to Traffic Manager. The format can be recreated with:
-
-    #!/usr/bin/php
-    <?php
-        $foo = md5('admin',true);
-        echo strtoupper(substr(bin2hex($foo),0,23)) . "\n";
-    ?>
-
-   or
-
-    perl -MDigest::MD5 -e 'print uc(substr(Digest::MD5::md5_hex($ARGV[0]), 0, 23)), "\n"'  admin;`
-
-   Note that the web interface is not being maintained.
 
 *`proxy.config.admin.user_id `*
 :  `STRING`

Modified: trafficserver/site/branches/ats-cms/content/docs/trunk/admin/security-options/index.en.mdtext
URL: http://svn.apache.org/viewvc/trafficserver/site/branches/ats-cms/content/docs/trunk/admin/security-options/index.en.mdtext?rev=1088475&r1=1088474&r2=1088475&view=diff
==============================================================================
--- trafficserver/site/branches/ats-cms/content/docs/trunk/admin/security-options/index.en.mdtext (original)
+++ trafficserver/site/branches/ats-cms/content/docs/trunk/admin/security-options/index.en.mdtext Mon Apr  4 04:57:55 2011
@@ -24,7 +24,6 @@ Traffic Server provides a number of secu
 This chapter discusses the following topics: 
 
 * [Controlling Client Access to the Proxy Cache](#ControllingClientAccessProxyCache)
-* [Controlling Access: SSL](#ControllingAccessTrafficManager)
 * [Configuring DNS Server Selection (Split DNS)](#ConfiguringDNSServerSelectionSplit)
 * [Configuring Proxy Authentication](#ConfiguringProxyAuthentication)
 * [Using SSL Termination](#UsingSSLTermination)
@@ -42,49 +41,6 @@ cache by editing a configuration file.
 4. Navigate to the Traffic Server `bin` directory.
 5. Run the command `traffic_line -x` to apply the configuration changes.
 
-## Controlling Access via SSL ## {#ControllingAccessviaSSL}
-
-By restricting access to Traffic Server, you ensure that only authenticated 
-users can change configuration options and view network traffic statistics. 
- 
-
-### Using SSL for Secure Administration ### {#UsingSSLforSecureAdministration}
-
-Traffic Server supports the Secure Sockets Layer (**SSL**) protocol to provide 
-protection for remote administrative monitoring and configuration. SSL security 
-provides authentication for both ends of a network connection via certificates 
-and provides privacy via encryption. 
-
-To use SSL, you must do the following: 
-
-* Obtain an SSL certificate 
-* Enable SSL 
-
-#### Obtain an SSL Certificate  #### {#ObtainanSSLCertificate}
-
-The SSL certificate is a text file you must install in the Traffic Server `config` 
-directory. Either rename the certificate to the default filename `private_key.pem`, 
-or specify the name of the certificate in the configuration file (follow the 
-procedure in [Enabling SSL](#EnablingSSL)). 
-
-#### Enable SSL #### {#EnableSSL}
-
-After you've obtained an SSL certificate, enable SSL by manually editing a 
-configuration file. Follow the steps below:
-
-1. In a text editor, open the `records.config` file located in the Traffic Server `config` directory. 
-2. Edit the following variables:
-3. **Variable** **Description** 
-`_proxy.config.admin.use_ssl_`
-:   Set this variable to `1` to enable SSL.
-`_proxy.config.admin.ssl_cert_file_`
-:   Set this variable to specify the filename of the SSL certificate. You have 
-		to change the filename only if the certificate file does not use the default 
-		name `private_key.pem`.
-
-4. Save and close the `records.config` file. 
-5. Navigate to the Traffic Server `bin` directory.
-6. Run the command `traffic_line -x` to apply the configuration changes.
 
 ## Configuring DNS Server Selection (Split DNS) ## {#ConfiguringDNSServerSelection(SplitDNS)}