Bonjour.

J'ai un Alfresco One 4.2.3 derrière un serveur Frontal Apache 2.4.
J'ai paramétré une connexion client-Apache en SSL et tout fonctionne.
Le soucis vient de mon protocole Sharepoint que je veux également mettre en SSL.

J'ai suivi le tuto suivant :
http://desaille.fr/alfresco-publication-reverse/

Mais quand je clique sur "Editer en ligne" sur un document Word sous Share, Word se lance bien mais sans ouvrir le document.

Et si je met une configuration du serveur vti dans alfresco-global-properties et/ou vti-custom-context, Word me dit qu'il ne peut accèder au serveur.
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<VirtualHost *:7070>
	ServerName sharepoint.nomdemonserveur.com
	ProxyRequests Off
	RewriteEngine On
	ProxyPass / http://127.0.0.1:7070/
	ProxyPassReverse / http://127.0.0.1:7070/
	ProxyPass /_vti_bin/ http://127.0.0.1:7070/_vti_bin/
	ProxyPassReverse /_vti_bin/ http://127.0.0.1:7070/_vti_bin/
	ProxyPass /_vti_inf.html http://127.0.0.1:7070/_vti_inf.html
	ProxyPassReverse /_vti_inf.html http://127.0.0.1:7070/_vti_inf.html
	ProxyPass /_vti_inf.html http://127.0.0.1:7070/_vti_inf.html
	ProxyPassReverse /_vti_inf.html http://127.0.0.1:7070/_vti_inf.html
	ProxyPass /_vti_history/ http://127.0.0.1:7070/_vti_history/
	ProxyPassReverse /_vti_history/ http://127.0.0.1:7070/_vti_history/
	ErrorLog "logs/spp.ssl.error.log"
	CustomLog "logs/access.log" combined
	SSLEngine on
	SSLCertificateFile ssl/sharepoint.crt
	SSLCertificateKeyFile ssl/sharepoint.key
	<FilesMatch "\.(cgi|shtml|phtml|php)$">
		SSLOptions +StdEnvVars
	</FilesMatch>
	<Directory /usr/lib/cgi-bin>
		SSLOptions +StdEnvVars
	</Directory>
	BrowserMatch "MSIE [2-6]" nokeepalive ssl-unclean-shutdown downgrade-1.0 force-response-1.0
	BrowserMatch "MSIE [17-9]" ssl-unclean-shutdown
</VirtualHost>
Ceci est ma configuration du serveur vti sous Apache dans httpd.conf

Pourriez-vous m'aider s'il-vous-plait sur ce que je devrais mettre dans alfresco-global.properties et/ou vti-custom-context.xml ou autre fichier ?

Merci d'avance !