(504) Gateway Timeout
Hi,
I got a WSEMS Error: The remote server returned an error: (504) Gateway Timeout after 10 seconds waiting a response from server. I've looked into the config.json, but i don't see any value related to 10 seconds, is it content_read_timeout?
"http_server": {
"host": "localhost", // Defaults to localhost - be careful, this likely means IPV6 localhost, not 127.0.0.1.
"port": 8000, // Number. Defaults to 8000.
"ssl": true, // Boolean. Enable SSL. Defaults to false.
"certificate": "/path/to/certificate/file", // String. Default is empty.
"private_key": "/path/to/private/key", //String. Default is empty.
"passphrase": "password", //String. Default is empty.
"authenticate": true, // Boolean. Enable Authentication. Defaults to false.
"user": "johnsmith", // User for HTTP server.
"password": "AES:EncryptedPassword", // Password for user. Can be encrypted.
"content_read_timeout": 20000, // Setting to timeout when trying to read content from a POST or PUT.
"ports_to_try": 10, // Number. How many additional ports to try, incrementing by one, if the server cannot bind to the configured port. Defaults to 10.
"max_clients": 15, // Number. The maximum amount of concurrently connected clients. Defaults to 15.
"enable_csrf_tokens" : true, // Boolean. Flag to enable or disable the use of CSRF tokens on the server.
"csrf_token_rotation_period" : 10 // Number. Use to set how often a CSRF token will rotate for a given session (in minutes). Defaults to 10.
}
Any suggestions would be greatly appreciated!
My Bests,
Hung Tran

