enable DEVELOPER mode by default

This commit is contained in:
olevole
2024-11-24 17:08:56 +03:00
parent ed82241fc3
commit c8c532da72
2 changed files with 39 additions and 37 deletions

View File

@@ -9,7 +9,8 @@ server {
root /usr/local/www/clonos/public;
set $php_root $document_root;
client_max_body_size 0;
client_max_body_size 0; # upload ISO/VM
index index.php;
@@ -43,7 +44,8 @@ server {
fastcgi_param SCRIPT_FILENAME $php_root$fastcgi_script_name;
fastcgi_pass unix:/tmp/php-fpm.sock;
fastcgi_param WORKDIR /usr/jails;
# fastcgi_param APPLICATION_ENV development;
fastcgi_param APPLICATION_ENV development; # comment to disable DEVELOPER mode:
fastcgi_read_timeout 1200; # keep in sync with PHP max_execution_time = 1200
}