Session time out settings in m2ee_yaml

0
All, For our docker environment (we have Mendix running in Docker properly) we want to configure m2ee.yaml so that I can set session timeout and other settings there. How do I go about doing that in Docker Mendix, anybody can provide documentation for it, I can’t find documentation link for it.  Neil
asked
2 answers
0

The way I configure my Dockers, I set these custom runtime settings through environment variables. You can find the documentation on how to set them here. The documentation on Mendix's custom runtime settings can be found here.

Combining these two, you can set this setting by passing it as environment variable to your Docker as:

docker run -it -e MXRUNTIME_SessionTimeout=600000

 

answered
0

Thank you. That’s a nice answer. 

answered