Skip to content

Commit

Permalink
Php.ini set example
Browse files Browse the repository at this point in the history
  • Loading branch information
lucatacconi committed Apr 28, 2024
1 parent 97a4825 commit fd853c9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/APACHE_UBUNTU_EXPL.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ sudo systemctl enable apache2
```

Editing to php configuration file /etc/php/8.X/apache2/php.ini and /etc/php/8.X/cli/php.ini to set timezone and to increase the maximum execution time of the scripts. To select the correct maximum execution time, consider the time required to execute the longest task you want to schedule.
```
sudo vi /etc/php/8.3/apache2/php.ini
sudo vi /etc/php/8.3/cli/php.ini
```

Editing to apache configuration file /etc/apache2/apache2.conf to add Crunz-ui location mapping (Approximately line 185 of apache version 2.4.X):

Expand Down
4 changes: 4 additions & 0 deletions .github/NGINX_UBUNTU_EXPL.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ sudo systemctl status php8.1-fpm
```

Editing to php configuration file /etc/php/8.X/fpm/php.ini and /etc/php/8.X/cli/php.ini to set timezone and to increase the maximum execution time of the scripts. To select the correct maximum execution time, consider the time required to execute the longest task you want to schedule.
```
sudo vi /etc/php/8.3/fpm/php.ini
sudo vi /etc/php/8.3/cli/php.ini
```

Modify the nginx site-available defaul configuration file to allow php execution and to set the crunz-ui directory:
```
Expand Down

0 comments on commit fd853c9

Please sign in to comment.