Advertisement
Guest User

Untitled

a guest
Dec 17th, 2018
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.10 KB | None | 0 0
  1. [PHP]
  2. engine = On
  3. short_open_tag = Off
  4. precision = 14
  5. output_buffering = 4096
  6. zlib.output_compression = Off
  7. implicit_flush = Off
  8. serialize_precision = -1
  9. disable_functions = system,passthru,phpinfo,show_source,popen,proc_open,fopen_with_path,dbmopen,dbase_open,filepro,filepro_rowcount,filepro_retrieve,posix_mkfifo,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals
  10.  
  11. disable_classes =
  12. expose_php = Off
  13. max_execution_time = 60
  14. max_input_time = 60
  15. memory_limit = 2G
  16. error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT
  17. display_errors = Off
  18. display_startup_errors = Off
  19. log_errors = On
  20. log_errors_max_len = 1024
  21. ignore_repeated_errors = Off
  22. ignore_repeated_source = Off
  23. report_memleaks = On
  24. html_errors = On
  25. variables_order = "GPSE"
  26. request_order = "GP"
  27. register_argc_argv = Off
  28. auto_globals_jit = On
  29. post_max_size = 1G
  30. auto_prepend_file =
  31. auto_append_file =
  32. default_mimetype = "text/html"
  33. default_charset = "UTF-8"
  34. user_dir =
  35. enable_dl = On
  36. cgi.fix_pathinfo=0
  37. file_uploads = On
  38. upload_max_filesize = 1G
  39. max_file_uploads = 100
  40. allow_url_fopen = Off
  41. allow_url_include = Off
  42. default_socket_timeout = 60
  43.  
  44. [CLI Server]
  45. cli_server.color = On
  46.  
  47. [Date]
  48. date.timezone = Europe/Warsaw
  49.  
  50. [Pdo_mysql]
  51. pdo_mysql.cache_size = 2000
  52. pdo_mysql.default_socket=
  53.  
  54. [mail function]
  55. SMTP = localhost
  56. smtp_port = 25
  57. mail.add_x_header = Off
  58.  
  59. [ODBC]
  60. odbc.allow_persistent = On
  61. odbc.check_persistent = On
  62. odbc.max_persistent = -1
  63. odbc.max_links = -1
  64. odbc.defaultlrl = 4096
  65. odbc.defaultbinmode = 1
  66.  
  67. [MySQLi]
  68. mysqli.max_persistent = -1
  69. mysqli.allow_persistent = On
  70. mysqli.max_links = -1
  71. mysqli.cache_size = 2000
  72. mysqli.default_port = 3306
  73. mysqli.default_socket =
  74. mysqli.default_host =
  75. mysqli.default_user =
  76. mysqli.default_pw =
  77. mysqli.reconnect = Off
  78.  
  79. [mysqlnd]
  80. mysqlnd.collect_statistics = On
  81. mysqlnd.collect_memory_statistics = Off
  82.  
  83. [bcmath]
  84. bcmath.scale = 0
  85.  
  86. [Session]
  87. session.save_handler = files
  88. session.use_strict_mode = 0
  89. session.use_cookies = 1
  90. session.cookie_secure = On
  91. session.use_only_cookies = 1
  92. session.name = n3xtcl0ud
  93. session.auto_start = 0
  94. session.cookie_lifetime = 0
  95. session.cookie_path = /
  96. session.cookie_domain = cloud.domain
  97. session.cookie_httponly = 1
  98. session.serialize_handler = php
  99. session.gc_probability = 0
  100. session.gc_divisor = 1000
  101. session.gc_maxlifetime = 600
  102. session.referer_check =
  103. session.cache_limiter = nocache
  104. session.cache_expire = 30
  105. session.use_trans_sid = 0
  106. session.sid_length = 26
  107. session.trans_sid_tags = "a=href,area=href,frame=src,form="
  108. session.sid_bits_per_character = 5
  109. session.hash_function = 1
  110. session.hash_bits_per_character = 6
  111.  
  112. [Assertion]
  113. zend.assertions = -1
  114.  
  115. [Tidy]
  116. tidy.clean_output = Off
  117.  
  118. [soap]
  119. soap.wsdl_cache_enabled=1
  120. soap.wsdl_cache_dir="/tmp"
  121. soap.wsdl_cache_ttl=86400
  122. soap.wsdl_cache_limit = 5
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement