1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- 'use strict'
- exports.config = {
-
- app_name: ['Farhang 3'],
-
- license_key: 'e202034cea46b17dc69b1ca39f47e2c24f8020ee',
- logging: {
-
- level: 'info'
- },
-
- allow_all_headers: true,
- attributes: {
-
- exclude: [
- 'request.headers.cookie',
- 'request.headers.authorization',
- 'request.headers.proxyAuthorization',
- 'request.headers.setCookie*',
- 'request.headers.x*',
- 'response.headers.cookie',
- 'response.headers.authorization',
- 'response.headers.proxyAuthorization',
- 'response.headers.setCookie*',
- 'response.headers.x*'
- ]
- }
- }
|