Skip to Content
Menu
This question has been flagged
1 Reply
5034 Views

Hy,

I've got the latest odoo v8.0 installed as rpm on a centos. It runs perfectly and can be reached via *.8069 without any problem. I'm tryning to set up a reverse proxy on apache 2.4, here is my conf :

```<VirtualHost *:80>
        ServerName domain.tld
        ProxyPass / http://127.0.0.1:8069/
        ProxyPassReverse / http://127.0.0.1:8069/
        ProxyRequests Off
        SetEnv force-proxy-request-1.0 1
        SetEnv proxy-nokeepalive 1

    <Proxy *>
           Require all granted
        </Proxy>
    <Location />
           Require all granted
        </Location>
</VirtualHost>

```

My odoo is configure in proxy_mode =True and the web.base.url is http://domain.tld . Yet whatever I've done, I still having the following error :

``` 403 Forbidden</title> </head><body> <h1>Forbidden</h1> <p>You don't have permission to access /web/dataset/call_kw/hr.employee/get_suggested_thread on this server.</p>

```

Here are the apache logs :

```client denied by server configuration: proxy:http://domain.tld:8069/web/dataset/call_kw/ir.filters/get_filters, referer: http://domain.tld/web

```

I've browsed many many resources to find an answer to my problem without success. How can I solved this cross site url calling?

Any help would be appreciated

Avatar
Discard
Author Best Answer

closed thanks to this : https://github.com/odoo/odoo/issues/5614

Avatar
Discard