Advertisement
Guest User

Untitled

a guest
Jan 28th, 2017
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.12 KB | None | 0 0
  1. var conf = {};
  2.  
  3. conf.user = "";
  4. conf.group = "";
  5.  
  6.  
  7. conf.log = "kiwi.log";
  8.  
  9.  
  10.  
  11.  
  12. conf.servers = [];
  13.  
  14. conf.servers.push({
  15. port: 7778,
  16. address: "84.22.107.115"
  17. });
  18.  
  19.  
  20. conf.outgoing_address = {
  21. IPv4: '127.0.0.1'
  22. };
  23.  
  24. conf.identd = {
  25. enabled: true,
  26. port: 113,
  27. address: "0.0.0.0"
  28. };
  29.  
  30.  
  31.  
  32. conf.public_http = "client/";
  33.  
  34. conf.max_client_conns = 5;
  35.  
  36. conf.max_server_conns = 0;
  37.  
  38. conf.default_encoding = 'windows-1256';
  39.  
  40. conf.ircd_reconnect = false;
  41.  
  42.  
  43. conf.client_plugins = ['/kiwi/assets/plugins/auto_connect.html',
  44.  
  45.  
  46.  
  47.  
  48.  
  49. ];
  50.  
  51.  
  52. conf.module_dir = "../server_modules/";
  53.  
  54. conf.modules = ['staticident'];
  55.  
  56.  
  57.  
  58. ;
  59.  
  60. //conf.webirc_pass = { "127.0.0.1": "password", };
  61.  
  62.  
  63.  
  64.  
  65. conf.ip_as_username = [
  66.  
  67. ];
  68.  
  69. conf.reject_unauthorised_certificates = false;
  70.  
  71.  
  72.  
  73.  
  74. conf.http_proxies = ["127.0.0.1/32"];
  75.  
  76. conf.http_proxy_ip_header = "x-forwarded-for";
  77.  
  78. conf.http_base_path = "/kiwi";
  79.  
  80.  
  81.  
  82. conf.socks_proxy = {};
  83.  
  84. conf.socks_proxy.enabled = false;
  85.  
  86. conf.socks_proxy.all = false;
  87.  
  88. conf.socks_proxy.proxy_hosts = [
  89. "irc.example.com"
  90. ];
  91.  
  92. conf.socks_proxy.address = '127.0.0.1';
  93. conf.socks_proxy.port = 1080;
  94.  
  95. conf.socks_proxy.user = null;
  96. conf.socks_proxy.pass = null;
  97.  
  98.  
  99.  
  100. conf.quit_message = "http://movieholics.tv - A hand-crafted IRC client";
  101.  
  102.  
  103. conf.client = {
  104. server: '84.22.107.115',
  105. port: 6697,
  106. ssl: false,
  107. channel: '#lobby',
  108. channel_key: '',
  109. nick: '',
  110. settings: {
  111. theme: 'basic',
  112. text_theme: 'default',
  113. channel_list_style: 'tabs',
  114. scrollback: 250,
  115. show_joins_parts: true,
  116. show_timestamps: false,
  117. use_24_hour_timestamps: true,
  118. mute_sounds: false,
  119. show_emoticons: true,
  120. count_all_activity: false,
  121. show_autocomplete_slideout: false,
  122. locale: null // null = use the browser locale settings
  123. },
  124. window_title: 'Chat'
  125. };
  126.  
  127. //conf.restrict_server_password = "secretpassword7254";
  128.  
  129.  
  130. // List of themes available for the user to choose from
  131. conf.client_themes = [
  132. 'basic'
  133. ];
  134.  
  135.  
  136. module.exports.production = conf;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement