Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. ; reattach to the shared memory (for Windows only). Explicitly enabled file
  2. ; cache is required.
  3. ;opcache.file_cache_fallback=1
  4.  
  5. ; Enables or disables copying of PHP code (text segment) into HUGE PAGES.
  6. ; This should improve performance, but requires appropriate OS configuration.
  7. ;opcache.huge_code_pages=1
  8.  
  9. ; Validate cached file permissions.
  10. ;opcache.validate_permission=0
  11.  
  12. ; Prevent name collisions in chroot'ed environment.
  13. ;opcache.validate_root=0
  14.  
  15. ; If specified, it produces opcode dumps for debugging different stages of
  16. ; optimizations.
  17. ;opcache.opt_debug_level=0
  18.  
  19. [curl]
  20. ; A default value for the CURLOPT_CAINFO option. This is required to be an
  21. ; absolute path.
  22. ;curl.cainfo =
  23.  
  24. [openssl]
  25. ; The location of a Certificate Authority (CA) file on the local filesystem
  26. ; to use when verifying the identity of SSL/TLS peers. Most users should
  27. ; not specify a value for this directive as PHP will attempt to use the
  28. ; OS-managed cert stores in its absence. If specified, this value may still
  29. ; be overridden on a per-stream basis via the "cafile" SSL stream context
  30. ; option.
  31. ;openssl.cafile=
  32.  
  33. ; If openssl.cafile is not specified or if the CA file is not found, the
  34. ; directory pointed to by openssl.capath is searched for a suitable
  35. ; certificate. This value must be a correctly hashed certificate directory.
  36. ; Most users should not specify a value for this directive as PHP will
  37. ; attempt to use the OS-managed cert stores in its absence. If specified,
  38. ; this value may still be overridden on a per-stream basis via the "capath"
  39. ; SSL stream context option.
  40. ;openssl.capath=
  41.  
  42. ; Local Variables:
  43. ; tab-width: 4
  44. ; End:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement