Ci-dessous, les différences entre deux révisions de la page.
| Prochaine révision | Révision précédente | ||
| app:owncloud:configuration-apache [2018/02/09 09:51] – créée yoann | app:owncloud:configuration-apache [2021/02/01 21:51] (Version actuelle) – modification externe 127.0.0.1 | ||
|---|---|---|---|
| Ligne 8: | Ligne 8: | ||
| </ | </ | ||
| - | Créer un certificat pour l' | + | Créer un certificat pour l’hôte |
| Ligne 19: | Ligne 19: | ||
| <code bash> | <code bash> | ||
| a2ensite vhost.tld.conf | a2ensite vhost.tld.conf | ||
| + | apache2ctl configtest | ||
| systemctl restart apache2 | systemctl restart apache2 | ||
| </ | </ | ||
| + | |||
| + | ==== PHP5 ===== | ||
| + | |||
| + | Installation des modules PHP: | ||
| + | |||
| + | <code bash> | ||
| + | apt-get install php5-intl php5-curl | ||
| + | </ | ||
| + | |||
| + | Vérifier que les options et modules suivants sont actifs via **phpinfo()** | ||
| + | |||
| + | |||
| + | | ctype | For character type checking | ||
| + | | curl | Used for aspects of HTTP user authentication | ||
| + | | DOM | For operating on XML documents through the DOM API | ||
| + | | GD | For creating and manipulating image files in a variety of different image formats | ||
| + | | HASH | For working with message digests (hash). | ||
| + | | Digest | ||
| + | |iconv | For working with the iconv character set conversion facility. | ||
| + | | intl | Increases language translation performance and fixes sorting of non-ASCII characters | ||
| + | | JSON | For working with the JSON data-interchange format. | ||
| + | | libxml | ||
| + | | Multibyte | String For working with multibyte character encoding schemes. | ||
| + | | OpenSSL | ||
| + | | PDO | ||
| + | | Phar |For working with PHP Archives (.phar files). | ||
| + | | POSIX | For working with UNIX POSIX functionality. | ||
| + | | SimpleXML | For working with XML files as objects. | ||
| + | | XMLWriter | For generating streams or files of XML data. | ||
| + | | Zip |For reading and writing ZIP compressed archives and the files inside them. | ||
| + | | Zlib | For reading and writing gzip (.gz) compressed files. | ||