security.js 559 B

123456789101112131415161718192021222324
  1. 'use strict';
  2. /**
  3. * [exports 安全机制验证配置]
  4. * @type {Object}
  5. */
  6. module.exports = {
  7. /**
  8. * [xframe 框架的安全插件是默认开启的,如果我们想关闭其中一些安全防范,
  9. * 直接设置该项的 enable 属性为 false 即可]
  10. * @type {Object}
  11. */
  12. xframe: {
  13. enable: true,
  14. },
  15. /**
  16. * [csrf CSRF 攻击:伪造用户请求向网站发起恶意请求]
  17. * @type {Object}
  18. */
  19. csrf:{
  20. enable:false,
  21. queryName:'szjkj_token',//设置安全机制的名称
  22. bodyName:'szjkj_token',//设置安全机制的名称
  23. }
  24. };