web_athena.conf 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. // rAthena Web Server configuration file.
  2. // Note: "Comments" are all text on the right side of a double slash "//"
  3. // Whatever text is commented will not be parsed by the servers, and serves
  4. // only as information/reference.
  5. // The web server listens on the interface with this IP address.
  6. // NOTE: This allows you to run multiple servers on multiple interfaces
  7. // while using the same ports for each server.
  8. //bind_ip: 127.0.0.1
  9. // Web Server Port
  10. web_port: 8888
  11. //Time-stamp format which will be printed before all messages.
  12. //Can at most be 20 characters long.
  13. //Common formats:
  14. // %I:%M:%S %p (hour:minute:second 12 hour, AM/PM format)
  15. // %H:%M:%S (hour:minute:second, 24 hour format)
  16. // %d/%b/%Y (day/Month/year)
  17. //For full format information, consult the strftime() manual.
  18. //timestamp_format: [%d/%b %H:%M]
  19. //If redirected output contains escape sequences (color codes)
  20. stdout_with_ansisequence: no
  21. //Makes server log selected message types to a file in the /log/ folder
  22. //1: Log Warning Messages
  23. //2: Log Error and SQL Error messages.
  24. //4: Log Debug Messages
  25. //Example: "console_msg_log: 7" logs all 3 kinds
  26. //Messages logged by this overrides console_silent setting
  27. console_msg_log: 0
  28. // File path to store the console messages above
  29. console_log_filepath: ./log/web-msg_log.log
  30. //Makes server output more silent by omitting certain types of messages:
  31. //1: Hide Information messages
  32. //2: Hide Status messages
  33. //4: Hide Notice Messages
  34. //8: Hide Warning Messages
  35. //16: Hide Error and SQL Error messages.
  36. //32: Hide Debug Messages
  37. //Example: "console_silent: 7" Hides information, status and notice messages (1+2+4)
  38. console_silent: 0
  39. // Print requests and responses?
  40. // This is useful for debugging purposes, it will print the entire
  41. // request and response for each transaction.
  42. print_req_res: off
  43. // Allow GIF images to be uploaded as guild emblem?
  44. allow_gifs: yes
  45. import: conf/import/web_conf.txt