mirror of
https://github.com/24eme/signaturepdf.git
synced 2023-08-25 09:33:08 +02:00
Documentation precision in the README and in the config.ini file and use of ";" instead of "#" for comments
This commit is contained in:
parent
68be39ed23
commit
9a63402a2a
@ -244,6 +244,11 @@ chown www-data /path/to/folder/to/store/pdf
|
||||
Pour desactiver le mode Organiser, ajouter `DISABLE_ORGANIZATION=true` dans le fichier
|
||||
`config/config.ini`.
|
||||
|
||||
### Cacher ou modifier le lien de PDF de démo
|
||||
|
||||
Pour cacher le lien de pdf de démo, ajouter `PDF_DEMO_LINK=false` dans le fichier
|
||||
`config/config.ini`.
|
||||
|
||||
## Mise à jour
|
||||
|
||||
La dernière version stable est sur la branche `master`, pour la mise à jour il suffit de récupérer les dernières modifications :
|
||||
|
@ -1,8 +1,11 @@
|
||||
[globals]
|
||||
|
||||
# Path to which stored pdf to activate the mode of sharing a signature to several.
|
||||
# To deactivate this mode, simply do not configure it or leave it empty
|
||||
; Path to which stored pdf to activate the mode of sharing a signature to several.
|
||||
; To deactivate this mode, simply do not configure it or leave it empty
|
||||
PDF_STORAGE_PATH=/path/to/folder
|
||||
DISABLE_ORGANIZATION=false
|
||||
|
||||
; Disable organization tab and routes
|
||||
;DISABLE_ORGANIZATION=false
|
||||
|
||||
; Manage demo link pdf : true (by default, show), false (hide), or custom link
|
||||
;PDF_DEMO_LINK=true
|
||||
|
@ -1,7 +1,11 @@
|
||||
[globals]
|
||||
|
||||
# Path to which stored pdf to activate the mode of sharing a signature to several.
|
||||
# To deactivate this mode, simply do not configure it or leave it empty
|
||||
; Path to which stored pdf to activate the mode of sharing a signature to several.
|
||||
; To deactivate this mode, simply do not configure it or leave it empty
|
||||
PDF_STORAGE_PATH=${PDF_STORAGE_PATH}
|
||||
|
||||
; Disable organization tab and routes
|
||||
DISABLE_ORGANIZATION=${DISABLE_ORGANIZATION}
|
||||
|
||||
; Manage demo link pdf : true (by default, show), false (hide), or custom link
|
||||
PDF_DEMO_LINK=${PDF_DEMO_LINK}
|
||||
|
Loading…
Reference in New Issue
Block a user