Configuration apache

This commit is contained in:
Vincent LAURENT 2022-01-26 15:11:26 +01:00 committed by GitHub
parent 4e47ecf18a
commit da76ec041b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 0 deletions

View File

@ -47,6 +47,22 @@ upload_max_filesize = 24M # Taille maximum du fichier PDF à signer
post_max_size = 24M # Taille maximum du fichier PDF à signer
max_file_uploads = 201 # Nombre de pages maximum du PDF, ici 200 pages + le PDF d'origine
```
### Déployer avec apache
```
DocumentRoot /path/to/signaturepdf/public
<Directory /path/to/signaturepdf/public>
AllowOverride All
Require all granted
FallbackResource /index.php
php_value max_file_uploads 201
php_value upload_max_filesize 24M
php_value post_max_size 24M
</Directory>
```
## Tests
Pour exécuter les tests fonctionnels :