Bathiya Priyadarshana
Bathiya Priyadarshana

Reputation: 1405

Advanced HTTP server configurations in Play 2.3

I am using Play 2.3 to develop an application.

I need to set http.netty.log.wire to true which is by default false as specified in Play documents.

In the below link (last section) it says this option is available but it also specifies "we cannot use application.conf" to specify this.

https://www.playframework.com/documentation/2.3.x/ProductionConfiguration

If we cannot specify this in application conf, how can we specify this?

Thanks

Upvotes: 1

Views: 215

Answers (1)

Salem
Salem

Reputation: 12986

You will need to pass those options in the command line:

/path/to/your/app/bin/yourapp -Dhttp.netty.log.wire=true

Upvotes: 1

Related Questions