This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "data": { | |
| "key": "value" | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://yourDomain.com/{context}/index.cfm/_api/json/v1/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| POST https://yourdomain.com/{context}/index.cfm/_api/json/v1/{siteid}/login/?username={username}&password={password} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| filestore=fileDir | |
| filedir=/YourMappedDrive | |
| assetdir=/YourMappedDrive | |
| assetpath=http://www.yourPublicDomain.com | |
| usefilemode=false | |
| defaultfilemode=777 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $.getBean('entityName'); | |
| application.serviceFactory('entityName'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <cfscript> | |
| // to add content to the head section of a generated HTML page | |
| $.addToHTMLHeadQueue( | |
| '/path/to/yourFile.cfm' | |
| ); | |
| // to add content prior to the closing body tag of a generated HTML page | |
| $.addToHTMLFootQueue( | |
| '/path/to/yourFile.cfm' | |
| ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <Host name="localhost" | |
| appBase="webapps" | |
| unpackWARs="true" | |
| autoDeploy="true" | |
| xmlValidation="false" | |
| xmlNamespaceAware="false"> | |
| </Host> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| fileDir=/complete/path/to/files | |
| assetDir=/complete/path/to/files | |
| assetPath=http://media.yourdomain.com | |
| createRequiredDirectories=false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "Id": "SampleMuraCMSPolicy", | |
| "Statement": [ | |
| { | |
| "Sid": "ReadOnlyPermToAnonymousUser", | |
| "Action": "s3:GetObject", | |
| "Effect": "Allow", | |
| "Resource": "arn:aws:s3:::YourBucketName/*", | |
| "Principal": { | |
| "AWS": [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <servlet-mapping> | |
| <servlet-name>GlobalCFMLServlet</servlet-name> | |
| <url-pattern>/index.cfm/*</url-pattern> | |
| <url-pattern>/default/index.cfm/*</url-pattern> | |
| </servlet-mapping> |