Après de vaines recherches, tant pis je post.
sur SME 7.0 tout se passait très bien, puis au lendemain d'une MAJ,
- Accès à user-manager LAN : Ok
- Accès user-manager avec un putty ouvert puis https://127.0.0.1:980/user-manager : Ok
- Accès à user-manager WAN : 403 Forbidden - You don't have permission to access /user-manager on this server.
l'accès à user-password est toujours opérationnel dans tous les cas.
J'avais trouvé une modification fonctionnelle à réaliser dans templates, et pour le bon fonctionnement j'avais créé un template custom. Voici la procédure (qui fonctionnait)
- Code: Tout sélectionner
A way to achieve this would be the following:
- Edit /etc/e-smith/templates/etc/httpd/conf/httpd.conf/92ProxyPassUser
- Locate the block:
Code:
ProxyPass /user-manager http://127.0.0.1:980/user-manager/
<Location /user-manager>
SSLRequireSSL
order deny,allow
deny from all
allow from $localAccess $externalSSLAccess
</Location>
and remove the lines:
Code:
order deny,allow
deny from all
allow from $localAccess $externalSSLAccess
- Execute /sbin/e-smith/expand-template /etc/httpd/conf/httpd.conf and restart the webserver.
To use a custom template, just copy the original template to the corresponding folder under templates-custom, and edit it there. If there is a custom template with the same name as a regular template, the custom template wins.
Code:
mkdir -p /etc/e-smith/templates-custom/etc/httpd/conf/httpd.conf/
cd /etc/e-smith/templates-custom/etc/httpd/conf/httpd.conf/
cp /etc/e-smith/templates/etc/httpd/conf/httpd.conf/92ProxyPassUser .
vi 92ProxyPassUser
(make the changes suggested by egerards)
/sbin/e-smith/expand-template /etc/httpd/conf/httpd.conf
/etc/init.d/httpd-e-smith restart
/etc/init.d/httpd-admin restart
Si quelqu'un avait une réponse ?
Par avance merci.
Pascal.