콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
1 회신
7689 화면

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
290
1
7월 25
5068
0
7월 25
633
0
6월 25
702
1
6월 25
869