home *** CD-ROM | disk | FTP | other *** search
- ;
- ; Sample INI file for CFDist (AKA the "ColdFusion Listener Module").
- ;
- ; Place this file in the root directory of your CF installation.
- ; It must be named "cfdist.ini"
- ;
- ; !IMPORTANT! * All values (the strings on the right hand side of
- ; the equals sign) must be quoted using double
- ; quotes.
- ; * All info is case insensitive..
- ; * Lines beginning with a semicolon are treated as
- ; comments and are ignored.
- ;
-
-
- ; Use this to specify the port at which to listen for incoming CF requests.
- ;
- ; Valid values: a valid port number (integer).
- ;
- PORT = "1234"
-
-
- ; Use this to specify that the data sent between the machine running
- ; the web server and the machine running this program be encrypted.
- ;
- ; Valid values: Yes, No.
- ;
- ENCRYPTION = "YES"
-
-
- ; Use this to specify the key used to encrypt the data.
- ;
- ; Valid values: any string of up to 127 ASCII chars.
- ;
- KEY = "dogface"
-
- ; Use this to have this INI file be deleted after it is read at
- ; startup. (This is a security feature as it keeps your key from
- ; being read by others.)
- ;
- ; Valid values: Yes, No.
- ;
- DELETE = "NO"
-
-
- ; Use this to write a message to the CF "remote.log" confirming that
- ; remoting is active and what startup parameters (except the encryption
- ; key) were used.
- ;
- ; Valid values: Yes, No.
- ;
- MESSAGE = "YES"
-
-
-