Thank you very much, Pete! That did the trick.
I was able to implement this successfully. For anyone who needs to do this, these were our steps:
- Choose a phrase to use as a shared secret. For this example, I’m using “someSecret”.
- In the Lucee installation directory, in lucee/tomcat/conf directory, edit the file server.xml.
- On the line after
<!-- Define an AJP 1.3 Connector on port 8009 -->
, add your new secret with secret=“someSecret” into the tag. Save the file. It will look something like this:
<Connector port="8009" protocol="AJP/1.3" redirectPort="8443" secret="someSecret" />
- Edit the BonCodeAJP13.settings file in the Windows directory. After the element
<ModCFMLSecret/>
, add<RequestSecret>someSecret</RequestSecret>
. Save the file. - Restart the Lucee service and perform an IIS reset.