Advertisement
Guest User

Untitled

a guest
Nov 17th, 2017
586
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. es_instance_name: 'graylog'
  2. es_scripts: False
  3. es_templates: False
  4. es_version_lock: False
  5. es_heap_size: 1g
  6. es_major_version: "5.x"
  7. es_config: {
  8. node.name: "graylog",
  9. cluster.name: "graylog",
  10. discovery.zen.ping.unicast.hosts: "localhost:9301",
  11. http.port: 9200,
  12. transport.tcp.port: 9300,
  13. network.host: 0.0.0.0,
  14. node.data: true,
  15. node.master: true,
  16. bootstrap.mlockall: false,
  17. discovery.zen.ping.multicast.enabled: false
  18. }
  19. es_java_install: False
  20. graylog_install_elasticsearch: False
  21. graylog_install_mongodb: False
  22. graylog_install_nginx: False
  23. graylog_install_java: False
  24.  
  25. graylog_is_master: 'True'
  26. graylog_password_secret: 'password10'
  27. graylog_root_password_sha2: 'aa4a9ea03fcac15b5fc63c949ac34e7b0fd17906716ac3b8e58c599cdc5a52f0'
  28. graylog_elasticsearch_max_docs_per_index: 20000000
  29. graylog_elasticsearch_max_number_of_indices: 20
  30. graylog_elasticsearch_shards: 4
  31. graylog_elasticsearch_replicas: 0
  32.  
  33. graylog_rest_listen_uri: 'http://0.0.0.0:9000/api/'
  34. graylog_web_listen_uri: 'http://0.0.0.0:9000/'
  35.  
  36. nginx_sites:
  37.  
  38. graylog:
  39. - listen 80
  40. - server_name graylog
  41. - location / {
  42. proxy_pass http://localhost:9000/;
  43. proxy_set_header Host $host;
  44. proxy_set_header X-Real-IP $remote_addr;
  45. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  46. proxy_pass_request_headers on;
  47. proxy_connect_timeout 150;
  48. proxy_send_timeout 100;
  49. proxy_read_timeout 100;
  50. proxy_buffers 4 32k;
  51. client_max_body_size 8m;
  52. client_body_buffer_size 128k; }
  53.  
  54. graylog_web_endpoint_uri: 'http://0.0.0.0:9000/api/'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement