Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
1 Trả lời
6288 Lượt xem

Hi,

I'm trying to setup OpenERP7 with apache2 on an Ubuntu 12.04 VM.

Server is up and running on 8069 and when i hit domain.com:8069 , everything seems to work well.. However, if i try to use via apache reverse proxy, it doesn't serve any content but a blank page.

Here's my Virtual Host config.

<VirtualHost *:80>
  # Admin email, Server Name (domain name), and any aliases
  ServerAdmin info@domain.com
  ServerName  www.domain.com
  ServerAlias domain.com

  # Index file and Document Root (where the public files are located)
  DirectoryIndex index.html index.php
  DocumentRoot /var/www/<domain.com>/public_html/

  ProxyPreserveHost On
  ProxyPass /connect http:// localhost:8069
  ProxyPassReverse /connect http:// localhost:8069

  # Fix IE problem (httpapache proxy dav error 408/409)
  SetEnv proxy-nokeepalive 1

</VirtualHost>

As you can see, I'm trying to use the app as domain.com/connect and it doesn't work.

I have however configured a sub-domain (connect.domain.com) and it works perfectly.

I'm guessing that because of "DocumentRoot", apache is trying to serve the content from /var/www/<domain.com>/public_html/ and is failing.

But if I'm not wrong, ProxyPass should override DocumentRoot.

Any suggestions please?

Thanks.

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

Apache2 work fine with OpenERP <virtualhost *:80=""> ServerAdmin info@domain.com ServerName www.domain.com ServerAlias domain.com ProxtRequests Off ProxyPreserveHost On <proxy *=""> Order allow,deny Allow from all </proxy> ProxyPass / http:// localhost:8069/ ProxyPassReverse / http:// localhost:8069/

SetEnv proxy-nokeepalive 1

</virtualhost>

Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
0
thg 2 22
3696
1
thg 2 16
5746
4
thg 12 23
22130
2
thg 3 15
6918
1
thg 3 15
5411