universe

Universe
git clone https://git.dasho.dev/universe.git
Log | Files | Refs | Submodules | README

php.ini (881B)


      1 ; PHP Configuration for Chat Application
      2 ; Error reporting and display settings - disabled for production
      3 
      4 ; Turn off error reporting and display
      5 display_errors = Off
      6 display_startup_errors = Off
      7 log_errors = On
      8 log_errors_max_len = 1024
      9 ignore_repeated_errors = On
     10 ignore_repeated_source = Off
     11 html_errors = Off
     12 error_reporting = 0
     13 
     14 ; File upload settings
     15 file_uploads = On
     16 upload_max_filesize = 10000M
     17 max_file_uploads = 20
     18 post_max_size = 10000M
     19 
     20 ; Memory and execution limits
     21 memory_limit = 4000M
     22 max_execution_time = 1200
     23 max_input_time = 1200
     24 
     25 ; Session settings
     26 session.auto_start = Off
     27 session.use_cookies = On
     28 session.use_only_cookies = On
     29 session.cookie_httponly = On
     30 
     31 ; Security settings
     32 expose_php = Off
     33 allow_url_fopen = On
     34 allow_url_include = Off
     35 
     36 ; Date settings
     37 date.timezone = UTC
     38 
     39 ; Other performance settings
     40 realpath_cache_size = 4096K
     41 realpath_cache_ttl = 600