Odoo 8使用反向代理部署网站(apache2)

Odoo 8使用反向代理部署网站(apache2),apache2,openerp,reverse-proxy,odoo-8,domain-name,Apache2,Openerp,Reverse Proxy,Odoo 8,Domain Name,你好,我想使用Apache2部署我的网站,我的域名是www.hew-automation.be。我已经建立了从这个域名到我的服务器IP地址()的链接。我想去掉8080端口,同时停止在浏览器中显示IP地址 我安装了apache2,在/etc/apache2/sites available/odoo.conf中添加了以下内容: <VirtualHost *:80> ServerName hew-automation.be ServerAlias *.hew-automat

你好,我想使用Apache2部署我的网站,我的域名是www.hew-automation.be。我已经建立了从这个域名到我的服务器IP地址()的链接。我想去掉8080端口,同时停止在浏览器中显示IP地址

我安装了apache2,在/etc/apache2/sites available/odoo.conf中添加了以下内容:

<VirtualHost *:80>
    ServerName hew-automation.be
    ServerAlias *.hew-automation.be // Use this if you want dbfillter on subdomain
    ErrorLog /var/log/odoo/odoo-error.log
    CustomLog /var/log/odoo/odoo-access.log combined
    <Proxy *>
        Order deny,allow
        Allow from all
    </Proxy>
    ProxyRequests Off
    ProxyPass / http://localhost:8080/
    ProxyPassReverse / http://localhost:8080/
    ProxyVia On
    LogLevel warn
</VirtualHost>
现在,每当我浏览我的IP地址时,它总是显示Apache2的默认页面,我在这里做错了什么

谢谢

[options]
admin_passwd = XXXX
db_host = False 
db_port = False
db_user = XXXX
db_password = XXXX
addons_path = /opt/odoo/addons
logfile = /var/log/odoo/odoo-server.log
xmlrpc_port = 8068