跳至內容
選單
此問題已被標幟
1 回覆
7646 瀏覽次數

I tried to put the OpenERP Server behind a proxy and change the URL for the Web Client to run under a subdirectory?

How to achieve that it is possible to request the proxy (i.e. https://www.proxy-domain.com/oerp/) and make it completely work?

Is there anywhere an easy config or central place to change the basepath of the webapplication?

I do not actually want to proxy all the root URLs like /web/..., /module_name/static/, etc. (which is called by dynamic components) to the related root path in the backend.

I actually do know the --proxy-mode flag but the problem are the wrong javascript requests as decribed in the sentence before which do not prefix with /oerp/ (i.e.: /oerp/web/static/...).

Any ideas, comments and experiences about this issue would be appreciated?

頭像
捨棄
最佳答案

There is a server option --proxy-mode that is intended to "Enable correct behavior when behind a reverse proxy". We used this mode so that the user invitation email would contain a correct link.

We used apache:

<VirtualHost 10.jjj.kk.hh:80>

    # Define server specific information.
    ServerAdmin hostmaster@aaaaaa.net
    ServerName openerp.aaaaaa.net

   # Configure reverse proxy.
    ProxyRequests Off
    ProxyPreserveHost Off

    <Location />
        ProxyPass http://10.nnn.mmm.kk:8069/
        ProxyPassReverse http://10.nnn.mmm.kk:8069/

        Order allow,deny
        Allow from all
    </Location>

 </VirtualHost>
頭像
捨棄
相關帖文 回覆 瀏覽次數 活動
0
7月 25
162
1
7月 25
4952
0
7月 25
481
0
6月 25
592
1
6月 25
782