=== Installation d'OCS Inventory === En préparation, installer les paquets make et build-essential. Il est nécessaire d'installer 2 paquets, disponibles dans les dépôts. {{{# aptitude install ocsinventory-reports ocsinventory-server}}} Après cette installation, un conflit se fait avec un paquet d'Apache. Il suffit de relancer l'installation de ocsinventory-reports. == Sécurisation == On créer un certifcat auto-signé. Pour cela, suivez la procédure ci-dessous: [[http://wiki.ocsinventory-ng.org/index.php/Howtos:Install_OCS_on_debian/fr#Configurer_le_HTTPS_sur_le_serveur_web]] == Création des Vhosts == On créer 2 fichiers: default et default-ssl Voici le contenu de default. Il permet la redirection de HTTP à HTTPS {{{ ServerName ocs.fr.auf DocumentRoot /usr/share/ocsinventory-reports Redirect / https://ocs.fr.auf Options FollowSymLinks AllowOverride All Options Indexes FollowSymLinks MultiViews AllowOverride None Order allow,deny allow from all ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/ AllowOverride None Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch Order allow,deny Allow from all ErrorLog /var/log/apache2/error.log # Possible values include: debug, info, notice, warn, error, crit, # alert, emerg. LogLevel warn CustomLog /var/log/apache2/access.log combined Alias /doc/ "/usr/share/doc/" Options Indexes MultiViews FollowSymLinks AllowOverride None Order deny,allow Deny from all Allow from 127.0.0.0/255.0.0.0 ::1/128 }}} Voici le contenu de default-ssl. Cela permet la sécurisation de la connexion. {{{ ServerName ocs.fr.auf DocumentRoot /usr/share/ocsinventory-reports/ SSLEngine On SSLCertificateFile /etc/ssl/ocs.crt SSLCertificateKeyFile /etc/ssl/ocs.key Options FollowSymLinks AllowOverride All Options Indexes FollowSymLinks MultiViews AllowOverride None Order allow,deny allow from all ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/ AllowOverride None Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch Order allow,deny Allow from all ErrorLog /var/log/apache2/error.log # Possible values include: debug, info, notice, warn, error, crit, # alert, emerg. LogLevel warn CustomLog /var/log/apache2/access.log combined Alias /doc/ "/usr/share/doc/" Options Indexes MultiViews FollowSymLinks AllowOverride None Order deny,allow Deny from all Allow from 127.0.0.0/255.0.0.0 ::1/128 }}}