From 2ec4405b7b816a6c5da773f07c6a49d655e34aba Mon Sep 17 00:00:00 2001 From: Paul Couture Date: Thu, 14 Dec 2023 11:30:49 -0600 Subject: [PATCH] feat: prepping launch --- docker-compose.yml | 3 + nginx/default.conf | 46 + nginx/legacy_mappings.conf | 11 + nginx/nginx.conf | 146 ++ nginx/phpfpm8_2.ini | 1977 +++++++++++++++++ .../Commands/LegacyNginxMappingCommand.php | 46 + .../app/Http/Controllers/ArtistController.php | 34 +- .../Http/Controllers/ArtworkController.php | 9 +- .../Auth/RegisteredUserController.php | 15 +- .../Http/Controllers/EpisodeController.php | 27 +- .../Http/Controllers/PodcastController.php | 28 +- site/app/Livewire/Themeswitch.php | 4 +- site/app/Models/Artist.php | 16 +- site/app/Models/Episode.php | 5 + site/database/factories/ArtistFactory.php | 8 +- .../2023_12_14_022519_add_slug_to_artists.php | 28 + site/package.json | 1 + site/resources/img/artist-banner-default.png | Bin 0 -> 15258 bytes .../img/artist-dark-banner-default.png | Bin 0 -> 11815 bytes .../img/dk-artist-bg.png:Zone.Identifier | 3 + .../img/lt-artist-bg.png:Zone.Identifier | 3 + site/resources/scss/app.scss | 2 + site/resources/scss/components/_auth.scss | 10 + site/resources/scss/components/_authors.scss | 8 + site/resources/scss/components/_explore.scss | 10 + .../scss/components/_light-version.scss | 12 +- site/resources/scss/defaults/_variables.scss | 6 +- .../views/artworks/artwork.blade.php | 84 +- site/resources/views/artworks/card.blade.php | 58 + site/resources/views/auth/login.blade.php | 10 +- site/resources/views/auth/register.blade.php | 6 +- .../components/application-logo.blade.php | 4 +- .../views/components/primary-button.blade.php | 2 +- .../views/episodes/episode.blade.php | 112 + .../views/explore/artworks.blade.php | 42 +- .../views/home/hero/slider/slide.blade.php | 44 - .../views/home/hero/slider/slider.blade.php | 9 +- .../views/home/recents/card.blade.php | 35 - .../views/home/recents/section.blade.php | 7 +- site/resources/views/layouts/guest.blade.php | 29 +- site/resources/views/layouts/master.blade.php | 8 +- .../views/partials/nav/head.blade.php | 21 +- .../views/partials/nav/main.blade.php | 7 +- .../views/podcasts/podcast.blade.php | 84 + site/resources/views/profile/artist.blade.php | 80 + .../resources/views/profile/artists.blade.php | 43 + .../partials/single-artist-card.blade.php | 24 + site/routes/web.php | 9 +- site/yarn.lock | 12 + 49 files changed, 3006 insertions(+), 182 deletions(-) create mode 100644 nginx/default.conf create mode 100644 nginx/legacy_mappings.conf create mode 100644 nginx/nginx.conf create mode 100644 nginx/phpfpm8_2.ini create mode 100644 site/app/Console/Commands/LegacyNginxMappingCommand.php create mode 100644 site/database/migrations/2023_12_14_022519_add_slug_to_artists.php create mode 100644 site/resources/img/artist-banner-default.png create mode 100644 site/resources/img/artist-dark-banner-default.png create mode 100644 site/resources/img/dk-artist-bg.png:Zone.Identifier create mode 100644 site/resources/img/lt-artist-bg.png:Zone.Identifier create mode 100644 site/resources/scss/components/_auth.scss create mode 100644 site/resources/views/artworks/card.blade.php create mode 100644 site/resources/views/episodes/episode.blade.php delete mode 100644 site/resources/views/home/hero/slider/slide.blade.php delete mode 100644 site/resources/views/home/recents/card.blade.php create mode 100644 site/resources/views/podcasts/podcast.blade.php create mode 100644 site/resources/views/profile/artist.blade.php create mode 100644 site/resources/views/profile/artists.blade.php create mode 100644 site/resources/views/profile/partials/single-artist-card.blade.php diff --git a/docker-compose.yml b/docker-compose.yml index c37dc37..92ddcf3 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -10,6 +10,9 @@ services: volumes: - ./site:/var/www/html - ./static:/static + - ./nginx/default.conf:/etc/nginx/sites-available/default + - ./nginx/legacy_mappings.conf:/etc/nginx/snippets/legacy_mappings.conf + - ./nginx/nginx.conf:/etc/nginx/nginx.conf #- ./legacypublic:/legacypublic environment: TZ: UTC diff --git a/nginx/default.conf b/nginx/default.conf new file mode 100644 index 0000000..89a8bf2 --- /dev/null +++ b/nginx/default.conf @@ -0,0 +1,46 @@ +server { + listen 80 default_server; + listen [::]:80 default_server; + listen 443 ssl http2; + listen [::]:443 ssl http2; + + server_name _; + root /var/www/html/public; + index index.html index.htm index.php; + + # SSL + ssl_certificate /etc/ssl/web/server.crt; + ssl_certificate_key /etc/ssl/web/server.key; + + # additional config + include extra.d/*.conf; + + # health check + location /ping { + access_log off; + include snippets/fastcgi-php.conf; + fastcgi_read_timeout 5s; + fastcgi_pass unix:/var/run/php/php-fpm.sock; + } + + location /assets { + set $modified_filename ""; + if ($filename) { + set $modified_filename $filename; + } + rewrite ^ /legacy-asset?asset=$modified_filename last; + } + + # handle .php + location ~ \.php$ { + fastcgi_pass unix:/var/run/php/php-fpm.sock; + fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name; + include snippets/fastcgi-php.conf; + } + + # index.php fallback + location / { + try_files $uri $uri/ /index.php?$query_string; + } +} + diff --git a/nginx/legacy_mappings.conf b/nginx/legacy_mappings.conf new file mode 100644 index 0000000..c072295 --- /dev/null +++ b/nginx/legacy_mappings.conf @@ -0,0 +1,11 @@ +#snippets/legacy_mappings.conf + +map $uri $legacy_mapping { + ~^/assets/(?.+)$ $filename; + default $uri; +} + +map $filename $modified_filename { + ~/(.*) $1---; + default $filename; +} \ No newline at end of file diff --git a/nginx/nginx.conf b/nginx/nginx.conf new file mode 100644 index 0000000..db37071 --- /dev/null +++ b/nginx/nginx.conf @@ -0,0 +1,146 @@ +# Generated by nginxconfig.io +# https://www.serverion.com/nginx-config/#?0.domain=_&0.path=%2Fvar%2Fwww%2Fhtml&0.redirect=false&0.force_https=false&0.cert_type=custom&0.ssl_certificate=%2Fetc%2Fssl%2Fweb%2Fserver.crt&0.ssl_certificate_key=%2Fetc%2Fssl%2Fweb%2Fserver.key&0.wordpress&0.proxy_path=%2Fping&0.proxy_pass=unix:%2Fvar%2Frun%2Fphp%2Fphp-fpm.sock&0.index=index.html&content_security_policy=default-src%20'self'%20http:%20https:%20data:%20blob:%20'unsafe-inline';%20frame-ancestors%20'self';&php_server=%2Fvar%2Frun%2Fphp%2Fphp7.3-fpm.sock&expires_media=max&expires_svg=max&expires_fonts=max&user=www-data%20www-data&client_max_body_size=2048&symlink=false + +pcre_jit on; +worker_processes auto; +worker_rlimit_nofile 100000; +user www-data www-data; + +events { + worker_connections 65535; + use epoll; + multi_accept on; +} + +http { + # define common MIME types + include mime.types; + + # define the default MIME type + default_type application/octet-stream; + + # disable emitting nginx version + server_tokens off; + + # disable the directory listing output + autoindex off; + + # disable automatic generation of the "ETag" + etag off; + + # disable warnings about uninitialized variables are logged + uninitialized_variable_warn off; + + # ======================================================================== # + + # the bucket size for the maps hash table + map_hash_bucket_size 256; + map_hash_max_size 4096; + + # the bucket size for the server names hash tables + server_names_hash_bucket_size 256; + server_names_hash_max_size 4096; + + # the bucket size for variables hash tables + variables_hash_max_size 4096; + variables_hash_bucket_size 4096; + + # ======================================================================== # + + # cache informations about FDs, frequently accessed files + # can boost performance, but you need to test those values + open_file_cache max=200000 inactive=30s; + open_file_cache_valid 30s; + open_file_cache_min_uses 1; + open_file_cache_errors off; + open_log_file_cache max=10 inactive=30s min_uses=1 valid=5m; + + # ======================================================================== # + + # logging + access_log /var/log/nginx/access.log; + error_log /var/log/nginx/error.log error; + + # to boost I/O on HDD we can disable access logs + log_not_found off; + log_subrequest off; + rewrite_log on; + + # copies data between one FD and other from within the kernel + # faster than read() + write() + sendfile off; + sendfile_max_chunk 1m; + + # send headers in one piece, it is better than sending them one by one + tcp_nopush on; + + # don't buffer data sent, good for small data bursts in real time + tcp_nodelay on; + + # large files can be read and sent using multi-threading + # without blocking a worker process + aio threads; + directio 1m; + + # how to compare modification time + ssi on; + if_modified_since off; + + # set default size of the slice + slice 1m; + + # ======================================================================== # + + # allow the server to close connection on non responding client, + # this will free up memory + reset_timedout_connection on; + + # timeout for reading client request header -- default: 60 + client_header_timeout 10s; + + # request timed out -- default: 60 + client_body_timeout 75s; + + # if the request body size is more than the buffer size, then the entire (or partial) + # request body is written into a temporary file + client_body_buffer_size 128k; + + # if client stop responding, free up memory -- default: 60 + send_timeout 30s; + + # server will close connection after this time -- default: 75 + keepalive_timeout 30s; + + # number of requests client can make over keep-alive + keepalive_requests 100000; + + # maximum number and size of buffers + # for large headers to read from client request -- default: 4 8k; + large_client_header_buffers 4 16k; + + # ======================================================================== # + + # SSL + ssl_session_timeout 1d; + ssl_session_cache shared:SSL:10m; + ssl_session_tickets off; + + # Diffie-Hellman parameter for DHE ciphersuites + ssl_dhparam /etc/ssl/dhparam.pem; + + # Mozilla Intermediate configuration + ssl_protocols TLSv1.2 TLSv1.3; + ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384; + + # OCSP Stapling + # ssl_stapling on; + # ssl_stapling_verify on; + resolver 1.1.1.1 1.0.0.1 8.8.8.8 8.8.4.4 208.67.222.222 208.67.220.220 valid=60s; + resolver_timeout 2s; + + # ======================================================================== # + + include /etc/nginx/conf.d/*.conf; + include /etc/nginx/snippets/legacy_mappings.conf; + include /etc/nginx/sites-enabled/*; +} \ No newline at end of file diff --git a/nginx/phpfpm8_2.ini b/nginx/phpfpm8_2.ini new file mode 100644 index 0000000..b9503f2 --- /dev/null +++ b/nginx/phpfpm8_2.ini @@ -0,0 +1,1977 @@ +[PHP] + +;;;;;;;;;;;;;;;;;;; +; About php.ini ; +;;;;;;;;;;;;;;;;;;; +; PHP's initialization file, generally called php.ini, is responsible for +; configuring many of the aspects of PHP's behavior. + +; PHP attempts to find and load this configuration from a number of locations. +; The following is a summary of its search order: +; 1. SAPI module specific location. +; 2. The PHPRC environment variable. +; 3. A number of predefined registry keys on Windows +; 4. Current working directory (except CLI) +; 5. The web server's directory (for SAPI modules), or directory of PHP +; (otherwise in Windows) +; 6. The directory from the --with-config-file-path compile time option, or the +; Windows directory (usually C:\windows) +; See the PHP docs for more specific information. +; https://php.net/configuration.file + +; The syntax of the file is extremely simple. Whitespace and lines +; beginning with a semicolon are silently ignored (as you probably guessed). +; Section headers (e.g. [Foo]) are also silently ignored, even though +; they might mean something in the future. + +; Directives following the section heading [PATH=/www/mysite] only +; apply to PHP files in the /www/mysite directory. Directives +; following the section heading [HOST=www.example.com] only apply to +; PHP files served from www.example.com. Directives set in these +; special sections cannot be overridden by user-defined INI files or +; at runtime. Currently, [PATH=] and [HOST=] sections only work under +; CGI/FastCGI. +; https://php.net/ini.sections + +; Directives are specified using the following syntax: +; directive = value +; Directive names are *case sensitive* - foo=bar is different from FOO=bar. +; Directives are variables used to configure PHP or PHP extensions. +; There is no name validation. If PHP can't find an expected +; directive because it is not set or is mistyped, a default value will be used. + +; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one +; of the INI constants (On, Off, True, False, Yes, No and None) or an expression +; (e.g. E_ALL & ~E_NOTICE), a quoted string ("bar"), or a reference to a +; previously set variable or directive (e.g. ${foo}) + +; Expressions in the INI file are limited to bitwise operators and parentheses: +; | bitwise OR +; ^ bitwise XOR +; & bitwise AND +; ~ bitwise NOT +; ! boolean NOT + +; Boolean flags can be turned on using the values 1, On, True or Yes. +; They can be turned off using the values 0, Off, False or No. + +; An empty string can be denoted by simply not writing anything after the equal +; sign, or by using the None keyword: + +; foo = ; sets foo to an empty string +; foo = None ; sets foo to an empty string +; foo = "None" ; sets foo to the string 'None' + +; If you use constants in your value, and these constants belong to a +; dynamically loaded extension (either a PHP extension or a Zend extension), +; you may only use these constants *after* the line that loads the extension. + +;;;;;;;;;;;;;;;;;;; +; About this file ; +;;;;;;;;;;;;;;;;;;; +; PHP comes packaged with two INI files. One that is recommended to be used +; in production environments and one that is recommended to be used in +; development environments. + +; php.ini-production contains settings which hold security, performance and +; best practices at its core. But please be aware, these settings may break +; compatibility with older or less security conscience applications. We +; recommending using the production ini in production and testing environments. + +; php.ini-development is very similar to its production variant, except it is +; much more verbose when it comes to errors. We recommend using the +; development version only in development environments, as errors shown to +; application users can inadvertently leak otherwise secure information. + +; This is the php.ini-production INI file. + +;;;;;;;;;;;;;;;;;;; +; Quick Reference ; +;;;;;;;;;;;;;;;;;;; + +; The following are all the settings which are different in either the production +; or development versions of the INIs with respect to PHP's default behavior. +; Please see the actual settings later in the document for more details as to why +; we recommend these changes in PHP's behavior. + +; display_errors +; Default Value: On +; Development Value: On +; Production Value: Off + +; display_startup_errors +; Default Value: On +; Development Value: On +; Production Value: Off + +; error_reporting +; Default Value: E_ALL +; Development Value: E_ALL +; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT + +; log_errors +; Default Value: Off +; Development Value: On +; Production Value: On + +; max_input_time +; Default Value: -1 (Unlimited) +; Development Value: 60 (60 seconds) +; Production Value: 60 (60 seconds) + +; output_buffering +; Default Value: Off +; Development Value: 4096 +; Production Value: 4096 + +; register_argc_argv +; Default Value: On +; Development Value: Off +; Production Value: Off + +; request_order +; Default Value: None +; Development Value: "GP" +; Production Value: "GP" + +; session.gc_divisor +; Default Value: 100 +; Development Value: 1000 +; Production Value: 1000 + +; session.sid_bits_per_character +; Default Value: 4 +; Development Value: 5 +; Production Value: 5 + +; short_open_tag +; Default Value: On +; Development Value: Off +; Production Value: Off + +; variables_order +; Default Value: "EGPCS" +; Development Value: "GPCS" +; Production Value: "GPCS" + +; zend.exception_ignore_args +; Default Value: Off +; Development Value: Off +; Production Value: On + +; zend.exception_string_param_max_len +; Default Value: 15 +; Development Value: 15 +; Production Value: 0 + +;;;;;;;;;;;;;;;;;;;; +; php.ini Options ; +;;;;;;;;;;;;;;;;;;;; +; Name for user-defined php.ini (.htaccess) files. Default is ".user.ini" +;user_ini.filename = ".user.ini" + +; To disable this feature set this option to an empty value +;user_ini.filename = + +; TTL for user-defined php.ini files (time-to-live) in seconds. Default is 300 seconds (5 minutes) +;user_ini.cache_ttl = 300 + +;;;;;;;;;;;;;;;;;;;; +; Language Options ; +;;;;;;;;;;;;;;;;;;;; + +; Enable the PHP scripting language engine under Apache. +; https://php.net/engine +engine = On + +; This directive determines whether or not PHP will recognize code between +; tags as PHP source which should be processed as such. It is +; generally recommended that should be used and that this feature +; should be disabled, as enabling it may result in issues when generating XML +; documents, however this remains supported for backward compatibility reasons. +; Note that this directive does not control the would work. +; https://php.net/syntax-highlighting +;highlight.string = #DD0000 +;highlight.comment = #FF9900 +;highlight.keyword = #007700 +;highlight.default = #0000BB +;highlight.html = #000000 + +; If enabled, the request will be allowed to complete even if the user aborts +; the request. Consider enabling it if executing long requests, which may end up +; being interrupted by the user or a browser timing out. PHP's default behavior +; is to disable this feature. +; https://php.net/ignore-user-abort +;ignore_user_abort = On + +; Determines the size of the realpath cache to be used by PHP. This value should +; be increased on systems where PHP opens many files to reflect the quantity of +; the file operations performed. +; Note: if open_basedir is set, the cache is disabled +; https://php.net/realpath-cache-size +;realpath_cache_size = 4096k + +; Duration of time, in seconds for which to cache realpath information for a given +; file or directory. For systems with rarely changing files, consider increasing this +; value. +; https://php.net/realpath-cache-ttl +;realpath_cache_ttl = 120 + +; Enables or disables the circular reference collector. +; https://php.net/zend.enable-gc +zend.enable_gc = On + +; If enabled, scripts may be written in encodings that are incompatible with +; the scanner. CP936, Big5, CP949 and Shift_JIS are the examples of such +; encodings. To use this feature, mbstring extension must be enabled. +;zend.multibyte = Off + +; Allows to set the default encoding for the scripts. This value will be used +; unless "declare(encoding=...)" directive appears at the top of the script. +; Only affects if zend.multibyte is set. +;zend.script_encoding = + +; Allows to include or exclude arguments from stack traces generated for exceptions. +; In production, it is recommended to turn this setting on to prohibit the output +; of sensitive information in stack traces +; Default Value: Off +; Development Value: Off +; Production Value: On +zend.exception_ignore_args = On + +; Allows setting the maximum string length in an argument of a stringified stack trace +; to a value between 0 and 1000000. +; This has no effect when zend.exception_ignore_args is enabled. +; Default Value: 15 +; Development Value: 15 +; Production Value: 0 +; In production, it is recommended to set this to 0 to reduce the output +; of sensitive information in stack traces. +zend.exception_string_param_max_len = 0 + +;;;;;;;;;;;;;;;;; +; Miscellaneous ; +;;;;;;;;;;;;;;;;; + +; Decides whether PHP may expose the fact that it is installed on the server +; (e.g. by adding its signature to the Web server header). It is no security +; threat in any way, but it makes it possible to determine whether you use PHP +; on your server or not. +; https://php.net/expose-php +expose_php = Off + +;;;;;;;;;;;;;;;;;;; +; Resource Limits ; +;;;;;;;;;;;;;;;;;;; + +; Maximum execution time of each script, in seconds +; https://php.net/max-execution-time +; Note: This directive is hardcoded to 0 for the CLI SAPI +max_execution_time = 30 + +; Maximum amount of time each script may spend parsing request data. It's a good +; idea to limit this time on productions servers in order to eliminate unexpectedly +; long running scripts. +; Note: This directive is hardcoded to -1 for the CLI SAPI +; Default Value: -1 (Unlimited) +; Development Value: 60 (60 seconds) +; Production Value: 60 (60 seconds) +; https://php.net/max-input-time +max_input_time = 60 + +; Maximum input variable nesting level +; https://php.net/max-input-nesting-level +;max_input_nesting_level = 64 + +; How many GET/POST/COOKIE input variables may be accepted +;max_input_vars = 1000 + +; How many multipart body parts (combined input variable and file uploads) may +; be accepted. +; Default Value: -1 (Sum of max_input_vars and max_file_uploads) +;max_multipart_body_parts = 1500 + +; Maximum amount of memory a script may consume +; https://php.net/memory-limit +memory_limit = 128M + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +; Error handling and logging ; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +; This directive informs PHP of which errors, warnings and notices you would like +; it to take action for. The recommended way of setting values for this +; directive is through the use of the error level constants and bitwise +; operators. The error level constants are below here for convenience as well as +; some common settings and their meanings. +; By default, PHP is set to take action on all errors, notices and warnings EXCEPT +; those related to E_NOTICE and E_STRICT, which together cover best practices and +; recommended coding standards in PHP. For performance reasons, this is the +; recommend error reporting setting. Your production server shouldn't be wasting +; resources complaining about best practices and coding standards. That's what +; development servers and development settings are for. +; Note: The php.ini-development file has this setting as E_ALL. This +; means it pretty much reports everything which is exactly what you want during +; development and early testing. +; +; Error Level Constants: +; E_ALL - All errors and warnings +; E_ERROR - fatal run-time errors +; E_RECOVERABLE_ERROR - almost fatal run-time errors +; E_WARNING - run-time warnings (non-fatal errors) +; E_PARSE - compile-time parse errors +; E_NOTICE - run-time notices (these are warnings which often result +; from a bug in your code, but it's possible that it was +; intentional (e.g., using an uninitialized variable and +; relying on the fact it is automatically initialized to an +; empty string) +; E_STRICT - run-time notices, enable to have PHP suggest changes +; to your code which will ensure the best interoperability +; and forward compatibility of your code +; E_CORE_ERROR - fatal errors that occur during PHP's initial startup +; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's +; initial startup +; E_COMPILE_ERROR - fatal compile-time errors +; E_COMPILE_WARNING - compile-time warnings (non-fatal errors) +; E_USER_ERROR - user-generated error message +; E_USER_WARNING - user-generated warning message +; E_USER_NOTICE - user-generated notice message +; E_DEPRECATED - warn about code that will not work in future versions +; of PHP +; E_USER_DEPRECATED - user-generated deprecation warnings +; +; Common Values: +; E_ALL (Show all errors, warnings and notices including coding standards.) +; E_ALL & ~E_NOTICE (Show all errors, except for notices) +; E_ALL & ~E_NOTICE & ~E_STRICT (Show all errors, except for notices and coding standards warnings.) +; E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR (Show only errors) +; Default Value: E_ALL +; Development Value: E_ALL +; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT +; https://php.net/error-reporting +error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT + +; This directive controls whether or not and where PHP will output errors, +; notices and warnings too. Error output is very useful during development, but +; it could be very dangerous in production environments. Depending on the code +; which is triggering the error, sensitive information could potentially leak +; out of your application such as database usernames and passwords or worse. +; For production environments, we recommend logging errors rather than +; sending them to STDOUT. +; Possible Values: +; Off = Do not display any errors +; stderr = Display errors to STDERR (affects only CGI/CLI binaries!) +; On or stdout = Display errors to STDOUT +; Default Value: On +; Development Value: On +; Production Value: Off +; https://php.net/display-errors +display_errors = Off + +; The display of errors which occur during PHP's startup sequence are handled +; separately from display_errors. We strongly recommend you set this to 'off' +; for production servers to avoid leaking configuration details. +; Default Value: On +; Development Value: On +; Production Value: Off +; https://php.net/display-startup-errors +display_startup_errors = Off + +; Besides displaying errors, PHP can also log errors to locations such as a +; server-specific log, STDERR, or a location specified by the error_log +; directive found below. While errors should not be displayed on productions +; servers they should still be monitored and logging is a great way to do that. +; Default Value: Off +; Development Value: On +; Production Value: On +; https://php.net/log-errors +log_errors = On + +; Do not log repeated messages. Repeated errors must occur in same file on same +; line unless ignore_repeated_source is set true. +; https://php.net/ignore-repeated-errors +ignore_repeated_errors = Off + +; Ignore source of message when ignoring repeated messages. When this setting +; is On you will not log errors with repeated messages from different files or +; source lines. +; https://php.net/ignore-repeated-source +ignore_repeated_source = Off + +; If this parameter is set to Off, then memory leaks will not be shown (on +; stdout or in the log). This is only effective in a debug compile, and if +; error reporting includes E_WARNING in the allowed list +; https://php.net/report-memleaks +report_memleaks = On + +; This setting is off by default. +;report_zend_debug = 0 + +; Turn off normal error reporting and emit XML-RPC error XML +; https://php.net/xmlrpc-errors +;xmlrpc_errors = 0 + +; An XML-RPC faultCode +;xmlrpc_error_number = 0 + +; When PHP displays or logs an error, it has the capability of formatting the +; error message as HTML for easier reading. This directive controls whether +; the error message is formatted as HTML or not. +; Note: This directive is hardcoded to Off for the CLI SAPI +; https://php.net/html-errors +;html_errors = On + +; If html_errors is set to On *and* docref_root is not empty, then PHP +; produces clickable error messages that direct to a page describing the error +; or function causing the error in detail. +; You can download a copy of the PHP manual from https://php.net/docs +; and change docref_root to the base URL of your local copy including the +; leading '/'. You must also specify the file extension being used including +; the dot. PHP's default behavior is to leave these settings empty, in which +; case no links to documentation are generated. +; Note: Never use this feature for production boxes. +; https://php.net/docref-root +; Examples +;docref_root = "/phpmanual/" + +; https://php.net/docref-ext +;docref_ext = .html + +; String to output before an error message. PHP's default behavior is to leave +; this setting blank. +; https://php.net/error-prepend-string +; Example: +;error_prepend_string = "" + +; String to output after an error message. PHP's default behavior is to leave +; this setting blank. +; https://php.net/error-append-string +; Example: +;error_append_string = "" + +; Log errors to specified file. PHP's default behavior is to leave this value +; empty. +; https://php.net/error-log +; Example: +;error_log = php_errors.log +; Log errors to syslog (Event Log on Windows). +;error_log = syslog + +; The syslog ident is a string which is prepended to every message logged +; to syslog. Only used when error_log is set to syslog. +;syslog.ident = php + +; The syslog facility is used to specify what type of program is logging +; the message. Only used when error_log is set to syslog. +;syslog.facility = user + +; Set this to disable filtering control characters (the default). +; Some loggers only accept NVT-ASCII, others accept anything that's not +; control characters. If your logger accepts everything, then no filtering +; is needed at all. +; Allowed values are: +; ascii (all printable ASCII characters and NL) +; no-ctrl (all characters except control characters) +; all (all characters) +; raw (like "all", but messages are not split at newlines) +; https://php.net/syslog.filter +;syslog.filter = ascii + +;windows.show_crt_warning +; Default value: 0 +; Development value: 0 +; Production value: 0 + +;;;;;;;;;;;;;;;;; +; Data Handling ; +;;;;;;;;;;;;;;;;; + +; The separator used in PHP generated URLs to separate arguments. +; PHP's default setting is "&". +; https://php.net/arg-separator.output +; Example: +;arg_separator.output = "&" + +; List of separator(s) used by PHP to parse input URLs into variables. +; PHP's default setting is "&". +; NOTE: Every character in this directive is considered as separator! +; https://php.net/arg-separator.input +; Example: +;arg_separator.input = ";&" + +; This directive determines which super global arrays are registered when PHP +; starts up. G,P,C,E & S are abbreviations for the following respective super +; globals: GET, POST, COOKIE, ENV and SERVER. There is a performance penalty +; paid for the registration of these arrays and because ENV is not as commonly +; used as the others, ENV is not recommended on productions servers. You +; can still get access to the environment variables through getenv() should you +; need to. +; Default Value: "EGPCS" +; Development Value: "GPCS" +; Production Value: "GPCS"; +; https://php.net/variables-order +variables_order = "GPCS" + +; This directive determines which super global data (G,P & C) should be +; registered into the super global array REQUEST. If so, it also determines +; the order in which that data is registered. The values for this directive +; are specified in the same manner as the variables_order directive, +; EXCEPT one. Leaving this value empty will cause PHP to use the value set +; in the variables_order directive. It does not mean it will leave the super +; globals array REQUEST empty. +; Default Value: None +; Development Value: "GP" +; Production Value: "GP" +; https://php.net/request-order +request_order = "GP" + +; This directive determines whether PHP registers $argv & $argc each time it +; runs. $argv contains an array of all the arguments passed to PHP when a script +; is invoked. $argc contains an integer representing the number of arguments +; that were passed when the script was invoked. These arrays are extremely +; useful when running scripts from the command line. When this directive is +; enabled, registering these variables consumes CPU cycles and memory each time +; a script is executed. For performance reasons, this feature should be disabled +; on production servers. +; Note: This directive is hardcoded to On for the CLI SAPI +; Default Value: On +; Development Value: Off +; Production Value: Off +; https://php.net/register-argc-argv +register_argc_argv = Off + +; When enabled, the ENV, REQUEST and SERVER variables are created when they're +; first used (Just In Time) instead of when the script starts. If these +; variables are not used within a script, having this directive on will result +; in a performance gain. The PHP directive register_argc_argv must be disabled +; for this directive to have any effect. +; https://php.net/auto-globals-jit +auto_globals_jit = On + +; Whether PHP will read the POST data. +; This option is enabled by default. +; Most likely, you won't want to disable this option globally. It causes $_POST +; and $_FILES to always be empty; the only way you will be able to read the +; POST data will be through the php://input stream wrapper. This can be useful +; to proxy requests or to process the POST data in a memory efficient fashion. +; https://php.net/enable-post-data-reading +;enable_post_data_reading = Off + +; Maximum size of POST data that PHP will accept. +; Its value may be 0 to disable the limit. It is ignored if POST data reading +; is disabled through enable_post_data_reading. +; https://php.net/post-max-size +post_max_size = 8M + +; Automatically add files before PHP document. +; https://php.net/auto-prepend-file +auto_prepend_file = + +; Automatically add files after PHP document. +; https://php.net/auto-append-file +auto_append_file = + +; By default, PHP will output a media type using the Content-Type header. To +; disable this, simply set it to be empty. +; +; PHP's built-in default media type is set to text/html. +; https://php.net/default-mimetype +default_mimetype = "text/html" + +; PHP's default character set is set to UTF-8. +; https://php.net/default-charset +default_charset = "UTF-8" + +; PHP internal character encoding is set to empty. +; If empty, default_charset is used. +; https://php.net/internal-encoding +;internal_encoding = + +; PHP input character encoding is set to empty. +; If empty, default_charset is used. +; https://php.net/input-encoding +;input_encoding = + +; PHP output character encoding is set to empty. +; If empty, default_charset is used. +; See also output_buffer. +; https://php.net/output-encoding +;output_encoding = + +;;;;;;;;;;;;;;;;;;;;;;;;; +; Paths and Directories ; +;;;;;;;;;;;;;;;;;;;;;;;;; + +; UNIX: "/path1:/path2" +;include_path = ".:/usr/share/php" +; +; Windows: "\path1;\path2" +;include_path = ".;c:\php\includes" +; +; PHP's default setting for include_path is ".;/path/to/php/pear" +; https://php.net/include-path + +; The root of the PHP pages, used only if nonempty. +; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root +; if you are running php as a CGI under any web server (other than IIS) +; see documentation for security issues. The alternate is to use the +; cgi.force_redirect configuration below +; https://php.net/doc-root +doc_root = + +; The directory under which PHP opens the script using /~username used only +; if nonempty. +; https://php.net/user-dir +user_dir = + +; Directory in which the loadable extensions (modules) reside. +; https://php.net/extension-dir +;extension_dir = "./" +; On windows: +;extension_dir = "ext" + +; Directory where the temporary files should be placed. +; Defaults to the system default (see sys_get_temp_dir) +;sys_temp_dir = "/tmp" + +; Whether or not to enable the dl() function. The dl() function does NOT work +; properly in multithreaded servers, such as IIS or Zeus, and is automatically +; disabled on them. +; https://php.net/enable-dl +enable_dl = Off + +; cgi.force_redirect is necessary to provide security running PHP as a CGI under +; most web servers. Left undefined, PHP turns this on by default. You can +; turn it off here AT YOUR OWN RISK +; **You CAN safely turn this off for IIS, in fact, you MUST.** +; https://php.net/cgi.force-redirect +;cgi.force_redirect = 1 + +; if cgi.nph is enabled it will force cgi to always sent Status: 200 with +; every request. PHP's default behavior is to disable this feature. +;cgi.nph = 1 + +; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape +; (iPlanet) web servers, you MAY need to set an environment variable name that PHP +; will look for to know it is OK to continue execution. Setting this variable MAY +; cause security issues, KNOW WHAT YOU ARE DOING FIRST. +; https://php.net/cgi.redirect-status-env +;cgi.redirect_status_env = + +; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI. PHP's +; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok +; what PATH_INFO is. For more information on PATH_INFO, see the cgi specs. Setting +; this to 1 will cause PHP CGI to fix its paths to conform to the spec. A setting +; of zero causes PHP to behave as before. Default is 1. You should fix your scripts +; to use SCRIPT_FILENAME rather than PATH_TRANSLATED. +; https://php.net/cgi.fix-pathinfo +;cgi.fix_pathinfo=1 + +; if cgi.discard_path is enabled, the PHP CGI binary can safely be placed outside +; of the web tree and people will not be able to circumvent .htaccess security. +;cgi.discard_path=1 + +; FastCGI under IIS supports the ability to impersonate +; security tokens of the calling client. This allows IIS to define the +; security context that the request runs under. mod_fastcgi under Apache +; does not currently support this feature (03/17/2002) +; Set to 1 if running under IIS. Default is zero. +; https://php.net/fastcgi.impersonate +;fastcgi.impersonate = 1 + +; Disable logging through FastCGI connection. PHP's default behavior is to enable +; this feature. +;fastcgi.logging = 0 + +; cgi.rfc2616_headers configuration option tells PHP what type of headers to +; use when sending HTTP response code. If set to 0, PHP sends Status: header that +; is supported by Apache. When this option is set to 1, PHP will send +; RFC2616 compliant header. +; Default is zero. +; https://php.net/cgi.rfc2616-headers +;cgi.rfc2616_headers = 0 + +; cgi.check_shebang_line controls whether CGI PHP checks for line starting with #! +; (shebang) at the top of the running script. This line might be needed if the +; script support running both as stand-alone script and via PHP CGI<. PHP in CGI +; mode skips this line and ignores its content if this directive is turned on. +; https://php.net/cgi.check-shebang-line +;cgi.check_shebang_line=1 + +;;;;;;;;;;;;;;;; +; File Uploads ; +;;;;;;;;;;;;;;;; + +; Whether to allow HTTP file uploads. +; https://php.net/file-uploads +file_uploads = On + +; Temporary directory for HTTP uploaded files (will use system default if not +; specified). +; https://php.net/upload-tmp-dir +;upload_tmp_dir = + +; Maximum allowed size for uploaded files. +; https://php.net/upload-max-filesize +upload_max_filesize = 2M + +; Maximum number of files that can be uploaded via a single request +max_file_uploads = 20 + +;;;;;;;;;;;;;;;;;; +; Fopen wrappers ; +;;;;;;;;;;;;;;;;;; + +; Whether to allow the treatment of URLs (like http:// or ftp://) as files. +; https://php.net/allow-url-fopen +allow_url_fopen = On + +; Whether to allow include/require to open URLs (like https:// or ftp://) as files. +; https://php.net/allow-url-include +allow_url_include = Off + +; Define the anonymous ftp password (your email address). PHP's default setting +; for this is empty. +; https://php.net/from +;from="john@doe.com" + +; Define the User-Agent string. PHP's default setting for this is empty. +; https://php.net/user-agent +;user_agent="PHP" + +; Default timeout for socket based streams (seconds) +; https://php.net/default-socket-timeout +default_socket_timeout = 60 + +; If your scripts have to deal with files from Macintosh systems, +; or you are running on a Mac and need to deal with files from +; unix or win32 systems, setting this flag will cause PHP to +; automatically detect the EOL character in those files so that +; fgets() and file() will work regardless of the source of the file. +; https://php.net/auto-detect-line-endings +;auto_detect_line_endings = Off + +;;;;;;;;;;;;;;;;;;;;;; +; Dynamic Extensions ; +;;;;;;;;;;;;;;;;;;;;;; + +; If you wish to have an extension loaded automatically, use the following +; syntax: +; +; extension=modulename +; +; For example: +; +; extension=mysqli +; +; When the extension library to load is not located in the default extension +; directory, You may specify an absolute path to the library file: +; +; extension=/path/to/extension/mysqli.so +; +; Note : The syntax used in previous PHP versions ('extension=.so' and +; 'extension='php_.dll') is supported for legacy reasons and may be +; deprecated in a future PHP major version. So, when it is possible, please +; move to the new ('extension=) syntax. +; +; Notes for Windows environments : +; +; - Many DLL files are located in the ext/ +; extension folders as well as the separate PECL DLL download. +; Be sure to appropriately set the extension_dir directive. +; +;extension=bz2 + +; The ldap extension must be before curl if OpenSSL 1.0.2 and OpenLDAP is used +; otherwise it results in segfault when unloading after using SASL. +; See https://github.com/php/php-src/issues/8620 for more info. +;extension=ldap + +;extension=curl +;extension=ffi +;extension=ftp +;extension=fileinfo +;extension=gd +;extension=gettext +;extension=gmp +;extension=intl +;extension=imap +;extension=mbstring +;extension=exif ; Must be after mbstring as it depends on it +;extension=mysqli +;extension=oci8_12c ; Use with Oracle Database 12c Instant Client +;extension=oci8_19 ; Use with Oracle Database 19 Instant Client +;extension=odbc +;extension=openssl +;extension=pdo_firebird +;extension=pdo_mysql +;extension=pdo_oci +;extension=pdo_odbc +;extension=pdo_pgsql +;extension=pdo_sqlite +;extension=pgsql +;extension=shmop + +; The MIBS data available in the PHP distribution must be installed. +; See https://www.php.net/manual/en/snmp.installation.php +;extension=snmp + +;extension=soap +;extension=sockets +;extension=sodium +;extension=sqlite3 +;extension=tidy +;extension=xsl +;extension=zip + +;zend_extension=opcache + +;;;;;;;;;;;;;;;;;;; +; Module Settings ; +;;;;;;;;;;;;;;;;;;; + +[CLI Server] +; Whether the CLI web server uses ANSI color coding in its terminal output. +cli_server.color = On + +[Date] +; Defines the default timezone used by the date functions +; https://php.net/date.timezone +;date.timezone = + +; https://php.net/date.default-latitude +;date.default_latitude = 31.7667 + +; https://php.net/date.default-longitude +;date.default_longitude = 35.2333 + +; https://php.net/date.sunrise-zenith +;date.sunrise_zenith = 90.833333 + +; https://php.net/date.sunset-zenith +;date.sunset_zenith = 90.833333 + +[filter] +; https://php.net/filter.default +;filter.default = unsafe_raw + +; https://php.net/filter.default-flags +;filter.default_flags = + +[iconv] +; Use of this INI entry is deprecated, use global input_encoding instead. +; If empty, default_charset or input_encoding or iconv.input_encoding is used. +; The precedence is: default_charset < input_encoding < iconv.input_encoding +;iconv.input_encoding = + +; Use of this INI entry is deprecated, use global internal_encoding instead. +; If empty, default_charset or internal_encoding or iconv.internal_encoding is used. +; The precedence is: default_charset < internal_encoding < iconv.internal_encoding +;iconv.internal_encoding = + +; Use of this INI entry is deprecated, use global output_encoding instead. +; If empty, default_charset or output_encoding or iconv.output_encoding is used. +; The precedence is: default_charset < output_encoding < iconv.output_encoding +; To use an output encoding conversion, iconv's output handler must be set +; otherwise output encoding conversion cannot be performed. +;iconv.output_encoding = + +[imap] +; rsh/ssh logins are disabled by default. Use this INI entry if you want to +; enable them. Note that the IMAP library does not filter mailbox names before +; passing them to rsh/ssh command, thus passing untrusted data to this function +; with rsh/ssh enabled is insecure. +;imap.enable_insecure_rsh=0 + +[intl] +;intl.default_locale = +; This directive allows you to produce PHP errors when some error +; happens within intl functions. The value is the level of the error produced. +; Default is 0, which does not produce any errors. +;intl.error_level = E_WARNING +;intl.use_exceptions = 0 + +[sqlite3] +; Directory pointing to SQLite3 extensions +; https://php.net/sqlite3.extension-dir +;sqlite3.extension_dir = + +; SQLite defensive mode flag (only available from SQLite 3.26+) +; When the defensive flag is enabled, language features that allow ordinary +; SQL to deliberately corrupt the database file are disabled. This forbids +; writing directly to the schema, shadow tables (eg. FTS data tables), or +; the sqlite_dbpage virtual table. +; https://www.sqlite.org/c3ref/c_dbconfig_defensive.html +; (for older SQLite versions, this flag has no use) +;sqlite3.defensive = 1 + +[Pcre] +; PCRE library backtracking limit. +; https://php.net/pcre.backtrack-limit +;pcre.backtrack_limit=100000 + +; PCRE library recursion limit. +; Please note that if you set this value to a high number you may consume all +; the available process stack and eventually crash PHP (due to reaching the +; stack size limit imposed by the Operating System). +; https://php.net/pcre.recursion-limit +;pcre.recursion_limit=100000 + +; Enables or disables JIT compilation of patterns. This requires the PCRE +; library to be compiled with JIT support. +;pcre.jit=1 + +[Pdo] +; Whether to pool ODBC connections. Can be one of "strict", "relaxed" or "off" +; https://php.net/pdo-odbc.connection-pooling +;pdo_odbc.connection_pooling=strict + +[Pdo_mysql] +; Default socket name for local MySQL connects. If empty, uses the built-in +; MySQL defaults. +pdo_mysql.default_socket= + +[Phar] +; https://php.net/phar.readonly +;phar.readonly = On + +; https://php.net/phar.require-hash +;phar.require_hash = On + +;phar.cache_list = + +[mail function] +; For Win32 only. +; https://php.net/smtp +SMTP = localhost +; https://php.net/smtp-port +smtp_port = 25 + +; For Win32 only. +; https://php.net/sendmail-from +;sendmail_from = me@example.com + +; For Unix only. You may supply arguments as well (default: "sendmail -t -i"). +; https://php.net/sendmail-path +;sendmail_path = + +; Force the addition of the specified parameters to be passed as extra parameters +; to the sendmail binary. These parameters will always replace the value of +; the 5th parameter to mail(). +;mail.force_extra_parameters = + +; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename +mail.add_x_header = Off + +; Use mixed LF and CRLF line separators to keep compatibility with some +; RFC 2822 non conformant MTA. +mail.mixed_lf_and_crlf = Off + +; The path to a log file that will log all mail() calls. Log entries include +; the full path of the script, line number, To address and headers. +;mail.log = +; Log mail to syslog (Event Log on Windows). +;mail.log = syslog + +[ODBC] +; https://php.net/odbc.default-db +;odbc.default_db = Not yet implemented + +; https://php.net/odbc.default-user +;odbc.default_user = Not yet implemented + +; https://php.net/odbc.default-pw +;odbc.default_pw = Not yet implemented + +; Controls the ODBC cursor model. +; Default: SQL_CURSOR_STATIC (default). +;odbc.default_cursortype + +; Allow or prevent persistent links. +; https://php.net/odbc.allow-persistent +odbc.allow_persistent = On + +; Check that a connection is still valid before reuse. +; https://php.net/odbc.check-persistent +odbc.check_persistent = On + +; Maximum number of persistent links. -1 means no limit. +; https://php.net/odbc.max-persistent +odbc.max_persistent = -1 + +; Maximum number of links (persistent + non-persistent). -1 means no limit. +; https://php.net/odbc.max-links +odbc.max_links = -1 + +; Handling of LONG fields. Returns number of bytes to variables. 0 means +; passthru. +; https://php.net/odbc.defaultlrl +odbc.defaultlrl = 4096 + +; Handling of binary data. 0 means passthru, 1 return as is, 2 convert to char. +; See the documentation on odbc_binmode and odbc_longreadlen for an explanation +; of odbc.defaultlrl and odbc.defaultbinmode +; https://php.net/odbc.defaultbinmode +odbc.defaultbinmode = 1 + +[MySQLi] + +; Maximum number of persistent links. -1 means no limit. +; https://php.net/mysqli.max-persistent +mysqli.max_persistent = -1 + +; Allow accessing, from PHP's perspective, local files with LOAD DATA statements +; https://php.net/mysqli.allow_local_infile +;mysqli.allow_local_infile = On + +; It allows the user to specify a folder where files that can be sent via LOAD DATA +; LOCAL can exist. It is ignored if mysqli.allow_local_infile is enabled. +;mysqli.local_infile_directory = + +; Allow or prevent persistent links. +; https://php.net/mysqli.allow-persistent +mysqli.allow_persistent = On + +; Maximum number of links. -1 means no limit. +; https://php.net/mysqli.max-links +mysqli.max_links = -1 + +; Default port number for mysqli_connect(). If unset, mysqli_connect() will use +; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the +; compile-time value defined MYSQL_PORT (in that order). Win32 will only look +; at MYSQL_PORT. +; https://php.net/mysqli.default-port +mysqli.default_port = 3306 + +; Default socket name for local MySQL connects. If empty, uses the built-in +; MySQL defaults. +; https://php.net/mysqli.default-socket +mysqli.default_socket = + +; Default host for mysqli_connect() (doesn't apply in safe mode). +; https://php.net/mysqli.default-host +mysqli.default_host = + +; Default user for mysqli_connect() (doesn't apply in safe mode). +; https://php.net/mysqli.default-user +mysqli.default_user = + +; Default password for mysqli_connect() (doesn't apply in safe mode). +; Note that this is generally a *bad* idea to store passwords in this file. +; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw") +; and reveal this password! And of course, any users with read access to this +; file will be able to reveal the password as well. +; https://php.net/mysqli.default-pw +mysqli.default_pw = + +; Allow or prevent reconnect +mysqli.reconnect = Off + +; If this option is enabled, closing a persistent connection will rollback +; any pending transactions of this connection, before it is put back +; into the persistent connection pool. +;mysqli.rollback_on_cached_plink = Off + +[mysqlnd] +; Enable / Disable collection of general statistics by mysqlnd which can be +; used to tune and monitor MySQL operations. +mysqlnd.collect_statistics = On + +; Enable / Disable collection of memory usage statistics by mysqlnd which can be +; used to tune and monitor MySQL operations. +mysqlnd.collect_memory_statistics = Off + +; Records communication from all extensions using mysqlnd to the specified log +; file. +; https://php.net/mysqlnd.debug +;mysqlnd.debug = + +; Defines which queries will be logged. +;mysqlnd.log_mask = 0 + +; Default size of the mysqlnd memory pool, which is used by result sets. +;mysqlnd.mempool_default_size = 16000 + +; Size of a pre-allocated buffer used when sending commands to MySQL in bytes. +;mysqlnd.net_cmd_buffer_size = 2048 + +; Size of a pre-allocated buffer used for reading data sent by the server in +; bytes. +;mysqlnd.net_read_buffer_size = 32768 + +; Timeout for network requests in seconds. +;mysqlnd.net_read_timeout = 31536000 + +; SHA-256 Authentication Plugin related. File with the MySQL server public RSA +; key. +;mysqlnd.sha256_server_public_key = + +[OCI8] + +; Connection: Enables privileged connections using external +; credentials (OCI_SYSOPER, OCI_SYSDBA) +; https://php.net/oci8.privileged-connect +;oci8.privileged_connect = Off + +; Connection: The maximum number of persistent OCI8 connections per +; process. Using -1 means no limit. +; https://php.net/oci8.max-persistent +;oci8.max_persistent = -1 + +; Connection: The maximum number of seconds a process is allowed to +; maintain an idle persistent connection. Using -1 means idle +; persistent connections will be maintained forever. +; https://php.net/oci8.persistent-timeout +;oci8.persistent_timeout = -1 + +; Connection: The number of seconds that must pass before issuing a +; ping during oci_pconnect() to check the connection validity. When +; set to 0, each oci_pconnect() will cause a ping. Using -1 disables +; pings completely. +; https://php.net/oci8.ping-interval +;oci8.ping_interval = 60 + +; Connection: Set this to a user chosen connection class to be used +; for all pooled server requests with Oracle Database Resident +; Connection Pooling (DRCP). To use DRCP, this value should be set to +; the same string for all web servers running the same application, +; the database pool must be configured, and the connection string must +; specify to use a pooled server. +;oci8.connection_class = + +; High Availability: Using On lets PHP receive Fast Application +; Notification (FAN) events generated when a database node fails. The +; database must also be configured to post FAN events. +;oci8.events = Off + +; Tuning: This option enables statement caching, and specifies how +; many statements to cache. Using 0 disables statement caching. +; https://php.net/oci8.statement-cache-size +;oci8.statement_cache_size = 20 + +; Tuning: Enables row prefetching and sets the default number of +; rows that will be fetched automatically after statement execution. +; https://php.net/oci8.default-prefetch +;oci8.default_prefetch = 100 + +; Tuning: Sets the amount of LOB data that is internally returned from +; Oracle Database when an Oracle LOB locator is initially retrieved as +; part of a query. Setting this can improve performance by reducing +; round-trips. +; https://php.net/oci8.prefetch-lob-size +; oci8.prefetch_lob_size = 0 + +; Compatibility. Using On means oci_close() will not close +; oci_connect() and oci_new_connect() connections. +; https://php.net/oci8.old-oci-close-semantics +;oci8.old_oci_close_semantics = Off + +[PostgreSQL] +; Allow or prevent persistent links. +; https://php.net/pgsql.allow-persistent +pgsql.allow_persistent = On + +; Detect broken persistent links always with pg_pconnect(). +; Auto reset feature requires a little overheads. +; https://php.net/pgsql.auto-reset-persistent +pgsql.auto_reset_persistent = Off + +; Maximum number of persistent links. -1 means no limit. +; https://php.net/pgsql.max-persistent +pgsql.max_persistent = -1 + +; Maximum number of links (persistent+non persistent). -1 means no limit. +; https://php.net/pgsql.max-links +pgsql.max_links = -1 + +; Ignore PostgreSQL backends Notice message or not. +; Notice message logging require a little overheads. +; https://php.net/pgsql.ignore-notice +pgsql.ignore_notice = 0 + +; Log PostgreSQL backends Notice message or not. +; Unless pgsql.ignore_notice=0, module cannot log notice message. +; https://php.net/pgsql.log-notice +pgsql.log_notice = 0 + +[bcmath] +; Number of decimal digits for all bcmath functions. +; https://php.net/bcmath.scale +bcmath.scale = 0 + +[browscap] +; https://php.net/browscap +;browscap = extra/browscap.ini + +[Session] +; Handler used to store/retrieve data. +; https://php.net/session.save-handler +session.save_handler = files + +; Argument passed to save_handler. In the case of files, this is the path +; where data files are stored. Note: Windows users have to change this +; variable in order to use PHP's session functions. +; +; The path can be defined as: +; +; session.save_path = "N;/path" +; +; where N is an integer. Instead of storing all the session files in +; /path, what this will do is use subdirectories N-levels deep, and +; store the session data in those directories. This is useful if +; your OS has problems with many files in one directory, and is +; a more efficient layout for servers that handle many sessions. +; +; NOTE 1: PHP will not create this directory structure automatically. +; You can use the script in the ext/session dir for that purpose. +; NOTE 2: See the section on garbage collection below if you choose to +; use subdirectories for session storage +; +; The file storage module creates files using mode 600 by default. +; You can change that by using +; +; session.save_path = "N;MODE;/path" +; +; where MODE is the octal representation of the mode. Note that this +; does not overwrite the process's umask. +; https://php.net/session.save-path +;session.save_path = "/var/lib/php/sessions" + +; Whether to use strict session mode. +; Strict session mode does not accept an uninitialized session ID, and +; regenerates the session ID if the browser sends an uninitialized session ID. +; Strict mode protects applications from session fixation via a session adoption +; vulnerability. It is disabled by default for maximum compatibility, but +; enabling it is encouraged. +; https://wiki.php.net/rfc/strict_sessions +session.use_strict_mode = 0 + +; Whether to use cookies. +; https://php.net/session.use-cookies +session.use_cookies = 1 + +; https://php.net/session.cookie-secure +;session.cookie_secure = + +; This option forces PHP to fetch and use a cookie for storing and maintaining +; the session id. We encourage this operation as it's very helpful in combating +; session hijacking when not specifying and managing your own session id. It is +; not the be-all and end-all of session hijacking defense, but it's a good start. +; https://php.net/session.use-only-cookies +session.use_only_cookies = 1 + +; Name of the session (used as cookie name). +; https://php.net/session.name +session.name = PHPSESSID + +; Initialize session on request startup. +; https://php.net/session.auto-start +session.auto_start = 0 + +; Lifetime in seconds of cookie or, if 0, until browser is restarted. +; https://php.net/session.cookie-lifetime +session.cookie_lifetime = 0 + +; The path for which the cookie is valid. +; https://php.net/session.cookie-path +session.cookie_path = / + +; The domain for which the cookie is valid. +; https://php.net/session.cookie-domain +session.cookie_domain = + +; Whether or not to add the httpOnly flag to the cookie, which makes it +; inaccessible to browser scripting languages such as JavaScript. +; https://php.net/session.cookie-httponly +session.cookie_httponly = + +; Add SameSite attribute to cookie to help mitigate Cross-Site Request Forgery (CSRF/XSRF) +; Current valid values are "Strict", "Lax" or "None". When using "None", +; make sure to include the quotes, as `none` is interpreted like `false` in ini files. +; https://tools.ietf.org/html/draft-west-first-party-cookies-07 +session.cookie_samesite = + +; Handler used to serialize data. php is the standard serializer of PHP. +; https://php.net/session.serialize-handler +session.serialize_handler = php + +; Defines the probability that the 'garbage collection' process is started on every +; session initialization. The probability is calculated by using gc_probability/gc_divisor, +; e.g. 1/100 means there is a 1% chance that the GC process starts on each request. +; Default Value: 1 +; Development Value: 1 +; Production Value: 1 +; https://php.net/session.gc-probability +session.gc_probability = 0 + +; Defines the probability that the 'garbage collection' process is started on every +; session initialization. The probability is calculated by using gc_probability/gc_divisor, +; e.g. 1/100 means there is a 1% chance that the GC process starts on each request. +; For high volume production servers, using a value of 1000 is a more efficient approach. +; Default Value: 100 +; Development Value: 1000 +; Production Value: 1000 +; https://php.net/session.gc-divisor +session.gc_divisor = 1000 + +; After this number of seconds, stored data will be seen as 'garbage' and +; cleaned up by the garbage collection process. +; https://php.net/session.gc-maxlifetime +session.gc_maxlifetime = 1440 + +; NOTE: If you are using the subdirectory option for storing session files +; (see session.save_path above), then garbage collection does *not* +; happen automatically. You will need to do your own garbage +; collection through a shell script, cron entry, or some other method. +; For example, the following script is the equivalent of setting +; session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes): +; find /path/to/sessions -cmin +24 -type f | xargs rm + +; Check HTTP Referer to invalidate externally stored URLs containing ids. +; HTTP_REFERER has to contain this substring for the session to be +; considered as valid. +; https://php.net/session.referer-check +session.referer_check = + +; Set to {nocache,private,public,} to determine HTTP caching aspects +; or leave this empty to avoid sending anti-caching headers. +; https://php.net/session.cache-limiter +session.cache_limiter = nocache + +; Document expires after n minutes. +; https://php.net/session.cache-expire +session.cache_expire = 180 + +; trans sid support is disabled by default. +; Use of trans sid may risk your users' security. +; Use this option with caution. +; - User may send URL contains active session ID +; to other person via. email/irc/etc. +; - URL that contains active session ID may be stored +; in publicly accessible computer. +; - User may access your site with the same session ID +; always using URL stored in browser's history or bookmarks. +; https://php.net/session.use-trans-sid +session.use_trans_sid = 0 + +; Set session ID character length. This value could be between 22 to 256. +; Shorter length than default is supported only for compatibility reason. +; Users should use 32 or more chars. +; https://php.net/session.sid-length +; Default Value: 32 +; Development Value: 26 +; Production Value: 26 +session.sid_length = 26 + +; The URL rewriter will look for URLs in a defined set of HTML tags. +;
is special; if you include them here, the rewriter will +; add a hidden field with the info which is otherwise appended +; to URLs. tag's action attribute URL will not be modified +; unless it is specified. +; Note that all valid entries require a "=", even if no value follows. +; Default Value: "a=href,area=href,frame=src,form=" +; Development Value: "a=href,area=href,frame=src,form=" +; Production Value: "a=href,area=href,frame=src,form=" +; https://php.net/url-rewriter.tags +session.trans_sid_tags = "a=href,area=href,frame=src,form=" + +; URL rewriter does not rewrite absolute URLs by default. +; To enable rewrites for absolute paths, target hosts must be specified +; at RUNTIME. i.e. use ini_set() +; tags is special. PHP will check action attribute's URL regardless +; of session.trans_sid_tags setting. +; If no host is defined, HTTP_HOST will be used for allowed host. +; Example value: php.net,www.php.net,wiki.php.net +; Use "," for multiple hosts. No spaces are allowed. +; Default Value: "" +; Development Value: "" +; Production Value: "" +;session.trans_sid_hosts="" + +; Define how many bits are stored in each character when converting +; the binary hash data to something readable. +; Possible values: +; 4 (4 bits: 0-9, a-f) +; 5 (5 bits: 0-9, a-v) +; 6 (6 bits: 0-9, a-z, A-Z, "-", ",") +; Default Value: 4 +; Development Value: 5 +; Production Value: 5 +; https://php.net/session.hash-bits-per-character +session.sid_bits_per_character = 5 + +; Enable upload progress tracking in $_SESSION +; Default Value: On +; Development Value: On +; Production Value: On +; https://php.net/session.upload-progress.enabled +;session.upload_progress.enabled = On + +; Cleanup the progress information as soon as all POST data has been read +; (i.e. upload completed). +; Default Value: On +; Development Value: On +; Production Value: On +; https://php.net/session.upload-progress.cleanup +;session.upload_progress.cleanup = On + +; A prefix used for the upload progress key in $_SESSION +; Default Value: "upload_progress_" +; Development Value: "upload_progress_" +; Production Value: "upload_progress_" +; https://php.net/session.upload-progress.prefix +;session.upload_progress.prefix = "upload_progress_" + +; The index name (concatenated with the prefix) in $_SESSION +; containing the upload progress information +; Default Value: "PHP_SESSION_UPLOAD_PROGRESS" +; Development Value: "PHP_SESSION_UPLOAD_PROGRESS" +; Production Value: "PHP_SESSION_UPLOAD_PROGRESS" +; https://php.net/session.upload-progress.name +;session.upload_progress.name = "PHP_SESSION_UPLOAD_PROGRESS" + +; How frequently the upload progress should be updated. +; Given either in percentages (per-file), or in bytes +; Default Value: "1%" +; Development Value: "1%" +; Production Value: "1%" +; https://php.net/session.upload-progress.freq +;session.upload_progress.freq = "1%" + +; The minimum delay between updates, in seconds +; Default Value: 1 +; Development Value: 1 +; Production Value: 1 +; https://php.net/session.upload-progress.min-freq +;session.upload_progress.min_freq = "1" + +; Only write session data when session data is changed. Enabled by default. +; https://php.net/session.lazy-write +;session.lazy_write = On + +[Assertion] +; Switch whether to compile assertions at all (to have no overhead at run-time) +; -1: Do not compile at all +; 0: Jump over assertion at run-time +; 1: Execute assertions +; Changing from or to a negative value is only possible in php.ini! (For turning assertions on and off at run-time, see assert.active, when zend.assertions = 1) +; Default Value: 1 +; Development Value: 1 +; Production Value: -1 +; https://php.net/zend.assertions +zend.assertions = -1 + +; Assert(expr); active by default. +; https://php.net/assert.active +;assert.active = On + +; Throw an AssertionError on failed assertions +; https://php.net/assert.exception +;assert.exception = On + +; Issue a PHP warning for each failed assertion. (Overridden by assert.exception if active) +; https://php.net/assert.warning +;assert.warning = On + +; Don't bail out by default. +; https://php.net/assert.bail +;assert.bail = Off + +; User-function to be called if an assertion fails. +; https://php.net/assert.callback +;assert.callback = 0 + +[COM] +; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs +; https://php.net/com.typelib-file +;com.typelib_file = + +; allow Distributed-COM calls +; https://php.net/com.allow-dcom +;com.allow_dcom = true + +; autoregister constants of a component's typelib on com_load() +; https://php.net/com.autoregister-typelib +;com.autoregister_typelib = true + +; register constants casesensitive +; https://php.net/com.autoregister-casesensitive +;com.autoregister_casesensitive = false + +; show warnings on duplicate constant registrations +; https://php.net/com.autoregister-verbose +;com.autoregister_verbose = true + +; The default character set code-page to use when passing strings to and from COM objects. +; Default: system ANSI code page +;com.code_page= + +; The version of the .NET framework to use. The value of the setting are the first three parts +; of the framework's version number, separated by dots, and prefixed with "v", e.g. "v4.0.30319". +;com.dotnet_version= + +[mbstring] +; language for internal character representation. +; This affects mb_send_mail() and mbstring.detect_order. +; https://php.net/mbstring.language +;mbstring.language = Japanese + +; Use of this INI entry is deprecated, use global internal_encoding instead. +; internal/script encoding. +; Some encoding cannot work as internal encoding. (e.g. SJIS, BIG5, ISO-2022-*) +; If empty, default_charset or internal_encoding or iconv.internal_encoding is used. +; The precedence is: default_charset < internal_encoding < iconv.internal_encoding +;mbstring.internal_encoding = + +; Use of this INI entry is deprecated, use global input_encoding instead. +; http input encoding. +; mbstring.encoding_translation = On is needed to use this setting. +; If empty, default_charset or input_encoding or mbstring.input is used. +; The precedence is: default_charset < input_encoding < mbstring.http_input +; https://php.net/mbstring.http-input +;mbstring.http_input = + +; Use of this INI entry is deprecated, use global output_encoding instead. +; http output encoding. +; mb_output_handler must be registered as output buffer to function. +; If empty, default_charset or output_encoding or mbstring.http_output is used. +; The precedence is: default_charset < output_encoding < mbstring.http_output +; To use an output encoding conversion, mbstring's output handler must be set +; otherwise output encoding conversion cannot be performed. +; https://php.net/mbstring.http-output +;mbstring.http_output = + +; enable automatic encoding translation according to +; mbstring.internal_encoding setting. Input chars are +; converted to internal encoding by setting this to On. +; Note: Do _not_ use automatic encoding translation for +; portable libs/applications. +; https://php.net/mbstring.encoding-translation +;mbstring.encoding_translation = Off + +; automatic encoding detection order. +; "auto" detect order is changed according to mbstring.language +; https://php.net/mbstring.detect-order +;mbstring.detect_order = auto + +; substitute_character used when character cannot be converted +; one from another +; https://php.net/mbstring.substitute-character +;mbstring.substitute_character = none + +; Enable strict encoding detection. +;mbstring.strict_detection = Off + +; This directive specifies the regex pattern of content types for which mb_output_handler() +; is activated. +; Default: mbstring.http_output_conv_mimetypes=^(text/|application/xhtml\+xml) +;mbstring.http_output_conv_mimetypes= + +; This directive specifies maximum stack depth for mbstring regular expressions. It is similar +; to the pcre.recursion_limit for PCRE. +;mbstring.regex_stack_limit=100000 + +; This directive specifies maximum retry count for mbstring regular expressions. It is similar +; to the pcre.backtrack_limit for PCRE. +;mbstring.regex_retry_limit=1000000 + +[gd] +; Tell the jpeg decode to ignore warnings and try to create +; a gd image. The warning will then be displayed as notices +; disabled by default +; https://php.net/gd.jpeg-ignore-warning +;gd.jpeg_ignore_warning = 1 + +[exif] +; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS. +; With mbstring support this will automatically be converted into the encoding +; given by corresponding encode setting. When empty mbstring.internal_encoding +; is used. For the decode settings you can distinguish between motorola and +; intel byte order. A decode setting cannot be empty. +; https://php.net/exif.encode-unicode +;exif.encode_unicode = ISO-8859-15 + +; https://php.net/exif.decode-unicode-motorola +;exif.decode_unicode_motorola = UCS-2BE + +; https://php.net/exif.decode-unicode-intel +;exif.decode_unicode_intel = UCS-2LE + +; https://php.net/exif.encode-jis +;exif.encode_jis = + +; https://php.net/exif.decode-jis-motorola +;exif.decode_jis_motorola = JIS + +; https://php.net/exif.decode-jis-intel +;exif.decode_jis_intel = JIS + +[Tidy] +; The path to a default tidy configuration file to use when using tidy +; https://php.net/tidy.default-config +;tidy.default_config = /usr/local/lib/php/default.tcfg + +; Should tidy clean and repair output automatically? +; WARNING: Do not use this option if you are generating non-html content +; such as dynamic images +; https://php.net/tidy.clean-output +tidy.clean_output = Off + +[soap] +; Enables or disables WSDL caching feature. +; https://php.net/soap.wsdl-cache-enabled +soap.wsdl_cache_enabled=1 + +; Sets the directory name where SOAP extension will put cache files. +; https://php.net/soap.wsdl-cache-dir +soap.wsdl_cache_dir="/tmp" + +; (time to live) Sets the number of second while cached file will be used +; instead of original one. +; https://php.net/soap.wsdl-cache-ttl +soap.wsdl_cache_ttl=86400 + +; Sets the size of the cache limit. (Max. number of WSDL files to cache) +soap.wsdl_cache_limit = 5 + +[sysvshm] +; A default size of the shared memory segment +;sysvshm.init_mem = 10000 + +[ldap] +; Sets the maximum number of open links or -1 for unlimited. +ldap.max_links = -1 + +[dba] +;dba.default_handler= + +[opcache] +; Determines if Zend OPCache is enabled +;opcache.enable=1 + +; Determines if Zend OPCache is enabled for the CLI version of PHP +;opcache.enable_cli=0 + +; The OPcache shared memory storage size. +;opcache.memory_consumption=128 + +; The amount of memory for interned strings in Mbytes. +;opcache.interned_strings_buffer=8 + +; The maximum number of keys (scripts) in the OPcache hash table. +; Only numbers between 200 and 1000000 are allowed. +;opcache.max_accelerated_files=10000 + +; The maximum percentage of "wasted" memory until a restart is scheduled. +;opcache.max_wasted_percentage=5 + +; When this directive is enabled, the OPcache appends the current working +; directory to the script key, thus eliminating possible collisions between +; files with the same name (basename). Disabling the directive improves +; performance, but may break existing applications. +;opcache.use_cwd=1 + +; When disabled, you must reset the OPcache manually or restart the +; webserver for changes to the filesystem to take effect. +;opcache.validate_timestamps=1 + +; How often (in seconds) to check file timestamps for changes to the shared +; memory storage allocation. ("1" means validate once per second, but only +; once per request. "0" means always validate) +;opcache.revalidate_freq=2 + +; Enables or disables file search in include_path optimization +;opcache.revalidate_path=0 + +; If disabled, all PHPDoc comments are dropped from the code to reduce the +; size of the optimized code. +;opcache.save_comments=1 + +; If enabled, compilation warnings (including notices and deprecations) will +; be recorded and replayed each time a file is included. Otherwise, compilation +; warnings will only be emitted when the file is first cached. +;opcache.record_warnings=0 + +; Allow file existence override (file_exists, etc.) performance feature. +;opcache.enable_file_override=0 + +; A bitmask, where each bit enables or disables the appropriate OPcache +; passes +;opcache.optimization_level=0x7FFFBFFF + +;opcache.dups_fix=0 + +; The location of the OPcache blacklist file (wildcards allowed). +; Each OPcache blacklist file is a text file that holds the names of files +; that should not be accelerated. The file format is to add each filename +; to a new line. The filename may be a full path or just a file prefix +; (i.e., /var/www/x blacklists all the files and directories in /var/www +; that start with 'x'). Line starting with a ; are ignored (comments). +;opcache.blacklist_filename= + +; Allows exclusion of large files from being cached. By default all files +; are cached. +;opcache.max_file_size=0 + +; Check the cache checksum each N requests. +; The default value of "0" means that the checks are disabled. +;opcache.consistency_checks=0 + +; How long to wait (in seconds) for a scheduled restart to begin if the cache +; is not being accessed. +;opcache.force_restart_timeout=180 + +; OPcache error_log file name. Empty string assumes "stderr". +;opcache.error_log= + +; All OPcache errors go to the Web server log. +; By default, only fatal errors (level 0) or errors (level 1) are logged. +; You can also enable warnings (level 2), info messages (level 3) or +; debug messages (level 4). +;opcache.log_verbosity_level=1 + +; Preferred Shared Memory back-end. Leave empty and let the system decide. +;opcache.preferred_memory_model= + +; Protect the shared memory from unexpected writing during script execution. +; Useful for internal debugging only. +;opcache.protect_memory=0 + +; Allows calling OPcache API functions only from PHP scripts which path is +; started from specified string. The default "" means no restriction +;opcache.restrict_api= + +; Mapping base of shared memory segments (for Windows only). All the PHP +; processes have to map shared memory into the same address space. This +; directive allows to manually fix the "Unable to reattach to base address" +; errors. +;opcache.mmap_base= + +; Facilitates multiple OPcache instances per user (for Windows only). All PHP +; processes with the same cache ID and user share an OPcache instance. +;opcache.cache_id= + +; Enables and sets the second level cache directory. +; It should improve performance when SHM memory is full, at server restart or +; SHM reset. The default "" disables file based caching. +;opcache.file_cache= + +; Enables or disables opcode caching in shared memory. +;opcache.file_cache_only=0 + +; Enables or disables checksum validation when script loaded from file cache. +;opcache.file_cache_consistency_checks=1 + +; Implies opcache.file_cache_only=1 for a certain process that failed to +; reattach to the shared memory (for Windows only). Explicitly enabled file +; cache is required. +;opcache.file_cache_fallback=1 + +; Enables or disables copying of PHP code (text segment) into HUGE PAGES. +; Under certain circumstances (if only a single global PHP process is +; started from which all others fork), this can increase performance +; by a tiny amount because TLB misses are reduced. On the other hand, this +; delays PHP startup, increases memory usage and degrades performance +; under memory pressure - use with care. +; Requires appropriate OS configuration. +;opcache.huge_code_pages=0 + +; Validate cached file permissions. +;opcache.validate_permission=0 + +; Prevent name collisions in chroot'ed environment. +;opcache.validate_root=0 + +; If specified, it produces opcode dumps for debugging different stages of +; optimizations. +;opcache.opt_debug_level=0 + +; Specifies a PHP script that is going to be compiled and executed at server +; start-up. +; https://php.net/opcache.preload +;opcache.preload= + +; Preloading code as root is not allowed for security reasons. This directive +; facilitates to let the preloading to be run as another user. +; https://php.net/opcache.preload_user +;opcache.preload_user= + +; Prevents caching files that are less than this number of seconds old. It +; protects from caching of incompletely updated files. In case all file updates +; on your site are atomic, you may increase performance by setting it to "0". +;opcache.file_update_protection=2 + +; Absolute path used to store shared lockfiles (for *nix only). +;opcache.lockfile_path=/tmp + +[curl] +; A default value for the CURLOPT_CAINFO option. This is required to be an +; absolute path. +;curl.cainfo = + +[openssl] +; The location of a Certificate Authority (CA) file on the local filesystem +; to use when verifying the identity of SSL/TLS peers. Most users should +; not specify a value for this directive as PHP will attempt to use the +; OS-managed cert stores in its absence. If specified, this value may still +; be overridden on a per-stream basis via the "cafile" SSL stream context +; option. +;openssl.cafile= + +; If openssl.cafile is not specified or if the CA file is not found, the +; directory pointed to by openssl.capath is searched for a suitable +; certificate. This value must be a correctly hashed certificate directory. +; Most users should not specify a value for this directive as PHP will +; attempt to use the OS-managed cert stores in its absence. If specified, +; this value may still be overridden on a per-stream basis via the "capath" +; SSL stream context option. +;openssl.capath= + +[ffi] +; FFI API restriction. Possible values: +; "preload" - enabled in CLI scripts and preloaded files (default) +; "false" - always disabled +; "true" - always enabled +;ffi.enable=preload + +; List of headers files to preload, wildcard patterns allowed. +;ffi.preload= diff --git a/site/app/Console/Commands/LegacyNginxMappingCommand.php b/site/app/Console/Commands/LegacyNginxMappingCommand.php new file mode 100644 index 0000000..17c8044 --- /dev/null +++ b/site/app/Console/Commands/LegacyNginxMappingCommand.php @@ -0,0 +1,46 @@ +line('# legacy_mappings.conf'); + $this->line(''); + $this->line('map $uri $new_location {'); + $artworks = Artwork::whereNotNull('legacy_filename')->get(); + foreach ($artworks as $artwork) { + if (!in_array($artwork->legacy_filename, $oldLocations) && !in_array($artwork->legacy_filename, $newLocations)) { + $oldLocations[] = $artwork->legacy_filename; + $newLocations[] = $artwork->legacy_filename; + $this->line(' "' . $artwork->legacy_filename . '" "/legacy-asset/?legacy_filename=' . urlencode($artwork->legacy_filename) . '";'); + } + } + $this->line(' default $uri;'); + $this->line('}'); + $this->line(''); + } +} diff --git a/site/app/Http/Controllers/ArtistController.php b/site/app/Http/Controllers/ArtistController.php index 8498fa0..5d55c2d 100644 --- a/site/app/Http/Controllers/ArtistController.php +++ b/site/app/Http/Controllers/ArtistController.php @@ -3,6 +3,9 @@ namespace App\Http\Controllers; use App\Models\Artist; +use App\Models\Artwork; +use App\Models\Podcast; +use App\Models\Episode; use Illuminate\Http\Request; class ArtistController extends Controller @@ -14,7 +17,18 @@ class ArtistController extends Controller */ public function index() { - // + $user = auth()->user(); + $artists = Artist::whereHas('artworks') + ->withCount('artworks') + ->orderBy('artworks_count', 'desc') + ->paginate(100); + $podcasts = Podcast::where('published', true)->with('episodes')->get(); + return view('profile.artists', [ + 'user' => $user, + 'pageTitle' => 'Artists', + 'podcasts' => $podcasts, + 'artists' => $artists, + ]); } /** @@ -44,9 +58,23 @@ public function store(Request $request) * @param \App\Models\Artist $artist * @return \Illuminate\Http\Response */ - public function show(Artist $artist) + public function show(Request $request, $slug) { - // + $user = auth()->user(); + $artist = Artist::where('slug', $slug) + ->firstOrFail(); + $artworks = Artwork::where('artist_id', $artist->id) + ->with('episode') + ->with('podcast') + ->orderBy('artworks.created_at', 'desc') + ->paginate($perPage = 92, $columns = ['*'], $pageName = 'artworks'); + $podcasts = Podcast::where('published', true)->with('episodes')->get(); + return view('profile.artist', [ + 'user' => $user, + 'artist' => $artist, + 'artworks' => $artworks, + 'podcasts' => $podcasts, + ]); } /** diff --git a/site/app/Http/Controllers/ArtworkController.php b/site/app/Http/Controllers/ArtworkController.php index 8854bd0..dc29c08 100644 --- a/site/app/Http/Controllers/ArtworkController.php +++ b/site/app/Http/Controllers/ArtworkController.php @@ -30,7 +30,7 @@ public function index() ->with('artist') ->orderBy('episode_id', 'desc') ->orderBy('created_at', 'desc') - ->paginate($perPage = 100, $columns = ['*'], $pageName = 'artworks'); + ->paginate($perPage = 3, $columns = ['*'], $pageName = 'artworks'); $podcasts = Podcast::where('published', true)->with('episodes')->get(); return view('explore.artworks', [ 'user' => $user, @@ -170,4 +170,11 @@ public function destroy(Artwork $artwork) { // } + + public function legacyArtLink(Request $request, $any = null) + { + phpinfo(); + dd($request->path()); + //$artwork = Artwork::where('legacy_filename', '/assets/artwork/') + } } diff --git a/site/app/Http/Controllers/Auth/RegisteredUserController.php b/site/app/Http/Controllers/Auth/RegisteredUserController.php index 5313f35..1f514f0 100644 --- a/site/app/Http/Controllers/Auth/RegisteredUserController.php +++ b/site/app/Http/Controllers/Auth/RegisteredUserController.php @@ -4,10 +4,12 @@ use App\Http\Controllers\Controller; use App\Models\User; +use App\Models\Artist; use App\Providers\RouteServiceProvider; use Illuminate\Auth\Events\Registered; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; +use Illuminate\Support\Str; use Illuminate\Support\Facades\Auth; use Illuminate\Support\Facades\Hash; use Illuminate\Validation\Rules; @@ -31,17 +33,24 @@ public function create(): View public function store(Request $request): RedirectResponse { $request->validate([ - 'name' => ['required', 'string', 'max:255'], + 'name' => ['unique:artists,name', 'required', 'string', 'max:255'], 'email' => ['required', 'string', 'email', 'max:255', 'unique:'.User::class], 'password' => ['required', 'confirmed', Rules\Password::defaults()], ]); $user = User::create([ - 'name' => $request->name, - 'email' => $request->email, + 'name' => trim($request->name), + 'email' => trim(strtolower($request->email)), 'password' => Hash::make($request->password), ]); + $artist = Artist::create([ + 'user_id' => $user->id, + 'name' => trim($request->name), + 'slug' => Str::slug(trim($request->name)), + 'location' => 'No Agenda Nation', + ]); + event(new Registered($user)); Auth::login($user); diff --git a/site/app/Http/Controllers/EpisodeController.php b/site/app/Http/Controllers/EpisodeController.php index 2af18cc..c4a64b5 100644 --- a/site/app/Http/Controllers/EpisodeController.php +++ b/site/app/Http/Controllers/EpisodeController.php @@ -2,8 +2,12 @@ namespace App\Http\Controllers; -use App\Models\Episode; use Illuminate\Http\Request; +use Illuminate\Support\Facades\Cache; +use Illuminate\Support\Facades\DB; +use App\Models\Podcast; +use App\Models\Artworks; +use App\Models\Episode; class EpisodeController extends Controller { @@ -44,9 +48,26 @@ public function store(Request $request) * @param \App\Models\Episode $episode * @return \Illuminate\Http\Response */ - public function show(Episode $episode) + public function show(Request $request, $podcast_slug, $slug) { - // + $user = auth()->user(); + $episode = Episode::where('slug', $slug) + ->with('artworks') + ->with('artwork') + ->with('podcast') + ->firstOrFail(); + $podcasts = Podcast::where('published', true)->with('episodes', function ($query) { + $query->orderBy('episode_number', 'desc'); + $query->where('published', true); + $query->take(10); + })->get(); + return view('episodes.episode', [ + 'user' => $user, + 'pageTitle' => '"' . $episode->title . '" ' . $episode->podcast->name . ' Episode ' . number_format($episode->episode_number + 0), + 'podcast' => $episode->podcast, + 'episode' => $episode, + 'podcasts' => $podcasts, + ]); } /** diff --git a/site/app/Http/Controllers/PodcastController.php b/site/app/Http/Controllers/PodcastController.php index aaa7e75..e8703a1 100644 --- a/site/app/Http/Controllers/PodcastController.php +++ b/site/app/Http/Controllers/PodcastController.php @@ -3,8 +3,34 @@ namespace App\Http\Controllers; use Illuminate\Http\Request; +use Illuminate\Support\Facades\Cache; +use Illuminate\Support\Facades\DB; +use App\Models\Podcast; +use App\Models\Artworks; +use App\Models\Episode; + class PodcastController extends Controller { - // + public function show(Request $request, $slug) + { + $user = auth()->user(); + $podcast = Podcast::where('slug', $slug) + ->where('published', true) + ->firstOrFail(); + $episodes = Episode::where('published', true) + ->whereNotNull('artwork_id') + ->with('artwork') + ->with('artworks') + ->where('podcast_id', $podcast->id) + ->orderBy('episode_number', 'desc')->paginate(100); + $podcasts = Podcast::where('published', true)->with('episodes')->get(); + return view('podcasts.podcast', [ + 'user' => $user, + 'pageTitle' => $podcast->name, + 'podcast' => $podcast, + 'episodes' => $episodes, + 'podcasts' => $podcasts, + ]); + } } diff --git a/site/app/Livewire/Themeswitch.php b/site/app/Livewire/Themeswitch.php index f935a76..031ce1c 100644 --- a/site/app/Livewire/Themeswitch.php +++ b/site/app/Livewire/Themeswitch.php @@ -9,12 +9,12 @@ class Themeswitch extends Component public function light() { - session(['preferred_theme' => 'light']); + session()->put('preferred_theme', 'light'); } public function dark() { - session(['preferred_theme' => 'dark']); + session()->put('preferred_theme', 'dark'); } public function render() diff --git a/site/app/Models/Artist.php b/site/app/Models/Artist.php index dcc197e..82f069f 100644 --- a/site/app/Models/Artist.php +++ b/site/app/Models/Artist.php @@ -22,9 +22,23 @@ class Artist extends Model 'deleted_at' => 'datetime', ]; + protected $fillable = [ + 'user_id', + 'name', + 'slug', + 'avatar', + 'header', + 'location', + 'website', + 'bio', + 'created_at', + 'updated_at', + 'deleted_at', + ]; + public function user() { - return $this->belongs_to(User::class); + return $this->belongsTo(User::class); } public function artworks() diff --git a/site/app/Models/Episode.php b/site/app/Models/Episode.php index 2d2f451..b0f4659 100644 --- a/site/app/Models/Episode.php +++ b/site/app/Models/Episode.php @@ -31,6 +31,11 @@ public function artwork() return $this->hasOne(Artwork::class, 'id', 'artwork_id'); } + public function artworks() + { + return $this->hasMany(Artwork::class); + } + public function artist() { return $this->hasOneThrough(Artist::class, Artwork::class); diff --git a/site/database/factories/ArtistFactory.php b/site/database/factories/ArtistFactory.php index 522c245..2b033fc 100644 --- a/site/database/factories/ArtistFactory.php +++ b/site/database/factories/ArtistFactory.php @@ -5,12 +5,13 @@ use App\Models\Artist; use App\Models\User; use Illuminate\Database\Eloquent\Factories\Factory; +use Illuminate\Support\Facades\Str; class ArtistFactory extends Factory { /** * The name of the factory's corresponding model - * + * * @var string */ protected $model = Artist::class; @@ -22,9 +23,12 @@ class ArtistFactory extends Factory */ public function definition() { + $name = fake()->name(); + $slug = Str::slug(strtolower(trim($name))); return [ 'user_id' => User::factory(), - 'name' => fake()->name(), + 'name' => $name, + 'slug' => $slug, 'avatar' => fake()->imageUrl(512, 512), 'header' => fake()->imageUrl(270, 185), 'location' => fake()->city() . ', ' . fake()->state(), diff --git a/site/database/migrations/2023_12_14_022519_add_slug_to_artists.php b/site/database/migrations/2023_12_14_022519_add_slug_to_artists.php new file mode 100644 index 0000000..10dcfc5 --- /dev/null +++ b/site/database/migrations/2023_12_14_022519_add_slug_to_artists.php @@ -0,0 +1,28 @@ +string('slug')->after('name'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('artists', function (Blueprint $table) { + $table->dropColumn('slug'); + }); + } +}; diff --git a/site/package.json b/site/package.json index 7a25721..dc2d931 100644 --- a/site/package.json +++ b/site/package.json @@ -20,6 +20,7 @@ "version": "0.0.0", "dependencies": { "aos": "^3.0.0-beta.6", + "guillotine": "^1.3.1", "isotope-layout": "^3.0.6", "jquery": "^3.7.0", "jquery-nice-select": "^1.1.0", diff --git a/site/resources/img/artist-banner-default.png b/site/resources/img/artist-banner-default.png new file mode 100644 index 0000000000000000000000000000000000000000..5af4dcaa95fad38fdd299bdaf12fab11e70bf2f8 GIT binary patch literal 15258 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 literal 0 HcmV?d00001 diff --git a/site/resources/img/artist-dark-banner-default.png b/site/resources/img/artist-dark-banner-default.png new file mode 100644 index 0000000000000000000000000000000000000000..d6d99fdfd3ff7fb2094e62dbb9b94fb7a38aeafb GIT binary patch literal 11815 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 . '" by ' . $artwork->artist->name) + @section('page-top')
-

Artwork for {{ $artwork->podcast->name }} {{ number_format($artwork->episode->episode_number + 0) }}

+

Artwork for {{ $artwork->podcast->name }} + {{ number_format($artwork->episode->episode_number + 0) }}