Odoo Help
Odoo is the world's easiest all-in-one management software. It includes hundreds of business apps:
CRM
|
e-Commerce
|
Accounting
|
Inventory
|
PoS
|
Project management
|
MRP
|
etc.
db-filter by domain, not for subdomain
Hello, I have a question, I hope you can help me:
If I want to filter the DB by subdomain, ie: pharmacy.sample.com (select the DB "pharmacy"), cellar.sample.com (select the DB "cellar"), shoe.sample.com (select the DB "shoe").
I use the following: --db-filter=^%d$ And it works great!
But if I require filter the DB by domain, ie: erp.pharmacy.com (select the DB "pharmacy"), erp.cellar.com (select the DB "cellar"), erp.shoe.com (select the DB "shoe").
So what I should put in "--db-filter"?
Reference: help.openerp.com/question/6583/domain-based-db-filter/
Of course, thank you very much for your help and cooperation!
check with this link:
https://www.odoo.com/forum/help-1/question/domain-based-db-filter-6583
I had a similar problem. It is not possible with Odoo to filter db's on anything other than the subdomain or, if the subdomain is 'www', the domain. I wanted to map company domains to different dbs, like this:
http://accounts.company1.com => db = company1
http://accounts.company2.com => db = company2
To fix this, I had to modify the function db_filter in http.py:
if d == "www" and r:
becomes:
if (d == "www" or d == "accounts") and r:
You can have different prefixes you want.
Houssine,
I tried using your suggestion of --db-filter=^%h$, but it did not work. From my understanding %h would be "sub.domain.com". I tried creating a database that was called "domain" and it did not work, so I tried creating "sub.domain.com", but it said that was invalid, so I tried "subdomaincom" and that still did not work, any ideas? (Odoo V8)
UPDATE: I believe this is not possible using only Odoo, I believe you have to use a 3rd party application like Apache or NGINX.
I found this guide for Reverse SSL Proxy with NGINX: http://www.schenkels.nl/2013/01/reverse-ssl-proxy-using-nginx-with-openerp-v7/
Anyone have any documentation relating directly to routing domains? Thanks!
About This Community
This platform is for beginners and experts willing to share their Odoo knowledge. It's not a forum to discuss ideas, but a knowledge base of questions and their answers.
RegisterOdoo Training Center
Access to our E-learning platform and experience all Odoo Apps through learning videos, exercises and Quizz.
Test it nowQuestion tools
Stats
Asked: 2/25/14, 5:04 PM |
Seen: 5799 times |
Last updated: 12/12/15, 10:47 PM |