403 between Alfresco and SOLR

cancel
Showing results for 
Search instead for 
Did you mean: 
azerty1234
Member II

403 between Alfresco and SOLR

Hello,

I've just upgraded from ACS 6.2 to ACS 7.2. In ACS 6.2, the communication between Alfresco and SOLR wasn't secured but with 7.2, the communication is secured with a secret in header of requests.

In my configuration, I have an Apache Server before Alfresco to manage communication with an Identity Provider (protocol OpenId Connect). The problem is that all requests between Alfresco and Solr ended with a 403 status code, it seems that the secret is lost because of the apache server. The configuration of my Apache is :

 

        <Location /share>
          AuthType openid-connect
          Require valid-user
        </Location>

        <Location /webdav>
          AuthType openid-connect
          Require valid-user
        </Location>

        <Location /alfresco>
          RequestHeader unset X-Alfresco-Remote-User
          Require all denied
          Require ip XX.XX.XX.XX/XX
          AuthType None
        </Location>

Does anyone can help me ?

Thanks