Advertisement
doblej

Untitled

Jun 29th, 2023
15
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. error_reporting = E_ALL | E_STRICT
  2. display_errors = On
  3. log_errors = On
  4. log_errors_max_len = 1024
  5. error_log = /var/log/php/phperrors.log
  6. expose_php = Off
  7. html_errors = Off
  8. memory_limit = 2024M
  9. variables_order = "GPCS"
  10. session.gc_probability = 1
  11. short_open_tag = 1
  12. upload_max_filesize = 30M
  13. max_execution_time = 120
  14. max_input_time = 120
  15. post_max_size = 35M
  16. always_populate_raw_post_data=-1
  17. session.cookie_httponly = On
  18. max_input_vars = 1300
  19.  
  20.  
  21. opcache.enable=1
  22. opcache.enable_cli=1
  23. opcache.max_accelerated_files=32531
  24. opcache.memory_consumption=128M
  25. opcache.interned_strings_buffer=64
  26. opcache.validate_timestamps=1
  27. opcache.revalidate_freq=4
  28. opcache.fast_shutdown=1
  29. opcache.save_comments=1
  30. opcache.max_file_size=0
  31. opcache.log_verbosity_level=2
  32.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement