Skip to Content
Odoo Menu
  • Prihlásiť sa
  • Vyskúšajte zadarmo
  • Aplikácie
    Financie
    • Účtovníctvo
    • Fakturácia
    • Výdavky
    • Tabuľka (BI)
    • Dokumenty
    • Podpis
    Predaj
    • CRM
    • Predaj
    • POS Shop
    • POS Restaurant
    • Manažment odberu
    • Požičovňa
    Webstránky
    • Tvorca webstránok
    • eShop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Supply Chain
    • Sklad
    • Výroba
    • Správa životného cyklu produktu
    • Nákup
    • Údržba
    • Manažment kvality
    Ľudské zdroje
    • Zamestnanci
    • Nábor zamestnancov
    • Voľné dni
    • Hodnotenia
    • Odporúčania
    • Vozový park
    Marketing
    • Marketing sociálnych sietí
    • Email marketing
    • SMS marketing
    • Eventy
    • Marketingová automatizácia
    • Prieskumy
    Služby
    • Projektové riadenie
    • Pracovné výkazy
    • Práca v teréne
    • Helpdesk
    • Plánovanie
    • Schôdzky
    Produktivita
    • Tímová komunikácia
    • Artificial Intelligence
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Priemyselné odvetvia
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Reštaurácia
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Reality
    • Real Estate Agency
    • Architecture Firm
    • Konštrukcia
    • Property Management
    • Gardening
    • Property Owner Association
    Poradenstvo
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Jedlo
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Iní
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Komunita
    Vzdelávanie
    • Tutoriály
    • Dokumentácia
    • Certifikácie
    • Školenie
    • Blog
    • Podcast
    Empower Education
    • Vzdelávací program
    • Scale Up! Business Game
    • Visit Odoo
    Softvér
    • Stiahnuť
    • Porovnanie Community a Enterprise vierzie
    • Releases
    Spolupráca
    • Github
    • Fórum
    • Eventy
    • Preklady
    • Staň sa partnerom
    • Services for Partners
    • Register your Accounting Firm
    Služby
    • Nájdite partnera
    • Nájdite účtovníka
    • Meet an advisor
    • Implementation Services
    • Zákaznícke referencie
    • Podpora
    • Upgrades
    ​Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Získajte demo
  • Cenník
  • Pomoc
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
Pomoc

Odoo 18 multi domains with multi databases dbfilter

Odoberať

Get notified when there's activity on this post

This question has been flagged
automaticlist_dbdbfiltermultidomainmultidatabase
3 Replies
185 Zobrazenia
Avatar
Asep Sidhi

I have several domains with multiple existing databases in my Odoo 18. I already activate the website app and set each domain within website > setting for each database.


   DatabaseA for mydomain1.com

   DBossB for myurl2.com


I want each domains automatically connect with its default database without database selector or create a new database.


within odoo.conf, I try to use :

dbfilter = ^%d$ 

list_db = False


and it variants (using ^%d or ^%h$ or ^%h ), but it always ask me to create new database . 


How to solve this problem ? Looking forward for how to solve this ....

0
Avatar
Zrušiť
Avatar
Host4Geeks
Best Answer

The reason every variant sends you to the create-database screen is that dbfilter doesn't map "domain → database" the way the names suggest. Odoo takes the incoming hostname, substitutes it into the pattern, and matches the result against your database names:

  • %h = the full hostname (e.g. mydomain1.com)
  • %d = the first label of the hostname, i.e. everything before the first dot (e.g. mydomain1)

So dbfilter = ^%d$ on a request to mydomain1.com resolves to ^mydomain1$ and looks for a database literally named mydomain1. Your databases are named DatabaseA and DBossB, which match none of these patterns, Odoo finds zero eligible databases and falls through to the manager.

The easiest way to fix this would be to rename DatabaseA → mydomain1.com and DBossB → myurl2.com, then:

[options]
proxy_mode = True
dbfilter = ^%h$
list_db = False

%h$ now resolves to the full hostname per request and matches the identically-named DB. proxy_mode = True is required so Odoo trusts the Host/X-Forwarded-* headers from your proxy instead of seeing localhost. This is the easiest setup.

The reverse proxy setup for Nginx or Apache would look like this:

Nginx

upstream odoo { server 127.0.0.1:8069; }

server {
listen 80;
server_name mydomain1.com;
location / {
proxy_set_header Host $host;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_redirect off;
proxy_pass http://odoo;
}
}

Duplicate that block with server_name myurl2.com;

If you're using Apache as your Reverse Proxy:

<VirtualHost *:80>
ServerName mydomain1.com
ProxyPreserveHost On
RequestHeader set X-Forwarded-Proto "http"
ProxyPass / http://127.0.0.1:8069/
ProxyPassReverse / http://127.0.0.1:8069/
</VirtualHost>

ProxyPreserveHost On is the Apache counterpart to nginx's proxy_set_header Host.


0
Avatar
Zrušiť
Avatar
Zehntech Technologies Inc.
Best Answer

Hello, 

This is usually caused by the dbfilter pattern not matching your actual database names.

The configuration dbfilter = ^%d$ works only when the database name matches the domain name (for example, mydomain1 → mydomain1.com).

If your databases are named differently (e.g., DatabaseA and DBossB), Odoo will not find a matching database and may redirect to the database manager page.

Please verify:

  • The database names match your dbfilter rule.
  • proxy_mode = True is enabled if you are using Nginx/Apache as a reverse proxy.
  • The domains are correctly pointing to the Odoo instance and sending the proper Host header.

In cases where database names differ from domain names, you may need a custom dbfilter expression or rename the databases to align with the domain pattern.

Hope this works for you! If you need any help implementing this or want a more optimized approach, feel free to reach out for further discussion.

Regards,

Zehntech Technologies Inc.

santosh.sekwadia@zehntech.com

0
Avatar
Zrušiť
Avatar
Gharis Javed
Best Answer

The issue is that dbfilter = ^%d$ relies on the subdomain matching the database name exactly. When your domain is mydomain1.com, Odoo extracts the hostname and tries to match it against the regex pattern — but mydomain1.com does not match DatabaseA because there is no subdomain to extract.

The production-safe solution is to use %h with nginx rewriting the Host header per domain.

Step 1 — odoo.conf

dbfilter = ^%h$
list_db = False

Step 2 — nginx config for each domain

For mydomain1.com:

server {
    server_name mydomain1.com;
    location / {
        proxy_pass http://127.0.0.1:8069;
        proxy_set_header Host DatabaseA;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto $scheme;
    }
}

For myurl2.com:

server {
    server_name myurl2.com;
    location / {
        proxy_pass http://127.0.0.1:8069;
        proxy_set_header Host DBossB;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto $scheme;
    }
}

Why this works:

proxy_set_header Host DatabaseA rewrites the Host header Odoo receives to match your database name exactly. The dbfilter ^%h$ then matches the rewritten host against your database name and connects automatically with no selector shown.

Why your current setup fails:

^%d$ extracts only the subdomain portion. On a root domain like mydomain1.com there is no subdomain — %d returns empty, the filter matches nothing, and Odoo falls back to the database creation screen.

After updating nginx:

sudo nginx -t && sudo systemctl reload nginx
sudo systemctl restart odoo

Muhammad Gharis Javed — Odoo v17/18/19 Backend Engineer

0
Avatar
Zrušiť
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Registrácia
Related Posts Replies Zobrazenia Aktivita
Odoo 14 / bitanmi - dbFilter <again>
dbfilter
Avatar
0
dec 20
2703
Welcome message whatsapp
automatic WhatsApp
Avatar
Avatar
Avatar
2
jún 26
458
Managing 2 companies with separate databases
database multidatabase
Avatar
Avatar
1
júl 25
2232
odoo.sql_db: Closed 1 connections
dbfilter Docker
Avatar
0
nov 24
2742
Odoo 14-Automated action
automatic PythonCode
Avatar
Avatar
1
jan 24
2786
Komunita
  • Tutoriály
  • Dokumentácia
  • Fórum
Open Source
  • Stiahnuť
  • Github
  • Runbot
  • Preklady
Služby
  • Odoo.sh hosting
  • Podpora
  • Vyššia verzia
  • Custom Developments
  • Vzdelávanie
  • Nájdite účtovníka
  • Nájdite partnera
  • Staň sa partnerom
O nás
  • Naša spoločnosť
  • Majetok značky
  • Kontaktujte nás
  • Pracovné ponuky
  • Eventy
  • Podcast
  • Blog
  • Zákazníci
  • Právne dokumenty • Súkromie
  • Bezpečnosť
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk Slovenščina Español (América Latina) Español Svenska ภาษาไทย Türkçe українська Tiếng Việt

Odoo je sada podnikových aplikácií s otvoreným zdrojovým kódom, ktoré pokrývajú všetky potreby vašej spoločnosti: CRM, e-shop, účtovníctvo, skladové hospodárstvo, miesto predaja, projektový manažment atď.

Odoo prináša vysokú pridanú hodnotu v jednoduchom použití a súčasne plne integrovanými biznis aplikáciami.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now