I installed odoo 10 in centos 7 by this tutorial https://www.rosehosting.com/blog/install-odoo-10-on-centos-7-with-apache-as-a-reverse-proxy/
working well, I can access odoo by url ip:port, i.e (192.168.1.1:8069)
But the problem is, I'm using odoo 10 in VPS (Virtual private server with centos 7 as operating system),
how can i access odoo without ip address ? I want to access odoo by domain (like www.domain.com), Anyone can help me to do this?
I try this code, but does not works
<VirtualHost *:80>
ServerName joko.jubaedah.com
ServerAlias www.joko.jubaedah.com
ProxyRequests Off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPass / http://joko.jubaedah.com:8069
ProxyPassReverse / http://joko.jubaedah.com:8069
<Location />
Order allow,deny
Allow from all
</Location>
</VirtualHost>
I want access odoo by domain such as www.joko.jubaedah.com (using sub domain concept) or www.jubaedah.com/joko
Thanks in advance.