Advertisement
Guest User

Untitled

a guest
May 19th, 2022
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. ### SERVER OPTIONS ###
  2. # Set this property to false to disable session debug
  3. -DsessionDebugEnabled=false
  4. # Disable SSLv3
  5. -Djdk.tls.client.protocols="TLSv1,TLSv1.1,TLSv1.2"
  6.  
  7.  
  8. ### JVM OPTIONS ###
  9. -Xmx3096M
  10. -Xms2048M
  11.  
  12. # Used CMS GC
  13. -XX:NewSize=512m -XX:MaxNewSize=512m
  14. # Disable heuristic rules
  15.  
  16. # Reduce Old Gen threshold
  17.  
  18. #-Xcheck:jni
  19.  
  20. # Can be a better GC setting to avoid long pauses
  21. #
  22. #-XX:+CMSIncrementalMode
  23. #-XX:+UseParNewGC"
  24.  
  25. # Uncomment to fix multicast crosstalk problem when streams share multicast port
  26. -Djava.net.preferIPv4Stack=true
  27.  
  28. # Default monitoring port is 50999. Make sure the port is closed on firewall. Use ssh tunel for the monitoring.
  29. -Dcom.sun.management.jmxremote=true
  30. -Dcom.sun.management.jmxremote.local.only=false
  31. -Dcom.sun.management.jmxremote.ssl=false
  32. -Dcom.sun.management.jmxremote.authenticate=false
  33. -Dcom.sun.management.jmxremote.port=50999
  34. -Djava.rmi.server.hostname=localhost
  35.  
  36. -XX:ErrorFile=/usr/local/FlashphonerWebCallServer/logs/error%p.log
  37. -Xlog:gc*:/usr/local/FlashphonerWebCallServer/logs/gc-core.log:time
  38.  
  39. # Proxy configuration
  40. #-Dhttps.proxyHost="192.168.1.1"
  41. #-Dhttps.proxyPort="3128"
  42. #-Dhttp.proxyHost="192.168.1.1"
  43. #-Dhttp.proxyPort="3128"
  44. #-Dhttp.nonProxyHosts="localhost|127.0.0.1|10.*|169.254.169.254"
  45.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement