Skip to Content
Odoo Menu
  • Zaloguj się
  • Wypróbuj za darmo
  • Aplikacje
    Finanse
    • Księgowość
    • Fakturowanie
    • Wydatki
    • Arkusz kalkulacyjny (BI)
    • Dokumenty
    • Podpisy
    Sprzedaż
    • CRM
    • Sprzedaż
    • PoS Sklep
    • PoS Restauracja
    • Subskrypcje
    • Wypożyczalnia
    Strony Internetowe
    • Kreator Stron Internetowych
    • eCommerce
    • Blog
    • Forum
    • Czat na Żywo
    • eLearning
    Łańcuch dostaw
    • Magazyn
    • Produkcja
    • PLM
    • Zakupy
    • Konserwacja
    • Jakość
    Zasoby Ludzkie
    • Pracownicy
    • Rekrutacja
    • Urlopy
    • Ocena pracy
    • Polecenia Pracownicze
    • Flota
    Marketing
    • Marketing Społecznościowy
    • E-mail Marketing
    • SMS Marketing
    • Wydarzenia
    • Automatyzacja Marketingu
    • Ankiety
    Usługi
    • Projekt
    • Ewidencja czasu pracy
    • Usługi Terenowe
    • Helpdesk
    • Planowanie
    • Spotkania
    Produktywność
    • Dyskusje
    • Zatwierdzenia
    • IoT
    • VoIP
    • Baza wiedzy
    • WhatsApp
    Aplikacje trzecich stron Studio Odoo Odoo Cloud Platform
  • Branże
    Sprzedaż detaliczna
    • Księgarnia
    • Sklep odzieżowy
    • Sklep meblowy
    • Sklep spożywczy
    • Sklep z narzędziami
    • Sklep z zabawkami
    Żywienie i hotelarstwo
    • Bar i Pub
    • Restauracja
    • Fast Food
    • Pensjonat
    • Dystrybutor napojów
    • Hotel
    Agencja nieruchomości
    • Agencja nieruchomości
    • Biuro architektoniczne
    • Budowa
    • Zarządzanie nieruchomościami
    • Ogrodnictwo
    • Stowarzyszenie właścicieli nieruchomości
    Doradztwo
    • Biuro księgowe
    • Partner Odoo
    • Agencja marketingowa
    • Kancelaria prawna
    • Agencja rekrutacyjna
    • Audyt i certyfikacja
    Produkcja
    • Tekstylia
    • Metal
    • Meble
    • Jedzenie
    • Browar
    • Prezenty firmowe
    Zdrowie & Fitness
    • Klub sportowy
    • Salon optyczny
    • Centrum fitness
    • Praktycy Wellness
    • Apteka
    • Salon fryzjerski
    Transakcje
    • Złota rączka
    • Wsparcie Sprzętu IT
    • Systemy energii słonecznej
    • Szewc
    • Firma sprzątająca
    • Usługi HVAC
    Inne
    • Organizacja non-profit
    • Agencja Środowiskowa
    • Wynajem billboardów
    • Fotografia
    • Leasing rowerów
    • Sprzedawca oprogramowania
    Przeglądaj wszystkie branże
  • Community
    Ucz się
    • Samouczki
    • Dokumentacja
    • Certyfikacje
    • Szkolenie
    • Blog
    • Podcast
    Pomóż w nauce innym
    • Program Edukacyjny
    • Scale Up! Gra biznesowa
    • Odwiedź Odoo
    Skorzystaj z oprogramowania
    • Pobierz
    • Porównaj edycje
    • Wydania
    Współpracuj
    • Github
    • Forum
    • Wydarzenia
    • Tłumaczenia
    • Zostań partnerem
    • Usługi dla partnerów
    • Zarejestruj swoją firmę rachunkową
    Skorzystaj z usług
    • Znajdź partnera
    • Znajdź księgowego
    • Spotkaj się z doradcą
    • Usługi wdrożenia
    • Opinie klientów
    • Wsparcie
    • Aktualizacje
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Zaplanuj demo
  • Cennik
  • Pomoc

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Księgowość
  • Zapasy
  • PoS
  • Projekt
  • MRP
All apps
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Pomoc

[Fixed] v10 - Multiple Domains with one Odoo Install

Zaprenumeruj

Otrzymaj powiadomienie o aktywności w tym poście

To pytanie dostało ostrzeżenie
multipledomains
10 Odpowiedzi
14557 Widoki
Awatar
Sean Donovan

I wanted one Odoo server to handle multiple low traffic sites on different domains.  Because multi-company is not well supported in the Community version (either it doesn't work or is not clearly documented), the best I could do was run Odoo against multiple databases, one for each domain.  I wanted the setup as simple as possible and with luck I found a way that doesn't require modifying source code (changing h.partition in "http.py") or setting up Apache as a proxy.

Here is how:

  1. Install Odoo as you normally would.

  2. Using iptables ("iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 8069") point 8069 to 80 (if you are using UFW - make sure to open both ports! - "ufw allow 8069", and add the iptables line to /etc/rc.local to make it stick around after a reboot)

  3. Create the databases for your domains, but the database name *has* to take the form of "<domainname>_<TLD>", for example "yourdomain.com" should have a database named "yourdomain_com" with an underscore between the domain name and TLD.  If you try to use a dash instead of an underline, Odoo says it is not an allowed character, which must have been a change with v10 because everywhere else said use a dash.

  4. Then edit "/etc/odoo/odoo.conf" and add "dbfilter = %h" (I did it before the addons_path, but I don't think it matters)  There is endless documentation for using "%d" for subdomains, but very little for domains.

  5. Restart Odoo ("service odoo restart")

  6. Point your domain A records at Odoo and each site will then pick up it's respective database. 

You can actually do all this in reverse and it will still work, i.e. add dbfilter to odoo.conf, then visit each domain and create their respective databases (still appropriately named with underscores) for each domain.

A few caveats:

  1. You will notice that if you go to the database manager, it will only show you the database for the current domain, i.e. if you have two databases, one "myfirstdomain_com" and "mysecondomain_org", if you visit /web/database/manager from myfirstdomain.com, you will only see the myfirstdomain_com database.  The "mysecondomain_org" will be hidden.  You also can't fool Odoo by going to the database selector with an IP address, the only way to manage all the databases at once is to comment out the "dbfilter" code in odoo.conf.

  2. The domain must remove the "www" otherwise, it will fail.

  3. If you messed something up, you will get the database creation page popping back up.

It took me most of the day, but I figured it out with a lot of googling and just trying random things.  Someone else might as well save the hours if it takes me a half hour to document it.

Sean.

3
Awatar
Odrzuć
Hilar Andikkadavath

Nice work.

Sudhir Arya (ERP Harbor Consulting Services)

Good job!!!

Awatar
Sean Donovan
Autor Najlepsza odpowiedź

(Since I can't delete this misthreaded answer) Odoo v10 does not allow dashes in the database name and why install any webserver when Odoo can do it by adding a single line to the configuration line.

0
Awatar
Odrzuć
Ermin Trevisan

I did not test it yet, but you could also use underscores, IIRC.

Ermin Trevisan

But I would use %d instead of %h anyway. This works fine for the most cases because the www. gets stripped off.

Ermin Trevisan

Also it is not good practice to be forced to remove "www." from a FQDN. Keeping the "www." subdomain is mostly recommended for convenience and SEO reasons.

Awatar
calvin
Najlepsza odpowiedź

 Is it  possible to add domain filter on the odoo which running subdomain filter?.

0
Awatar
Odrzuć
Awatar
Roberto Zanardo
Najlepsza odpowiedź

I've setup the environment using your suggestions and works on Odoo 11 too, also on windows:

http://robertozanardo.com/blog/2017/10/06/testing-odoo-11-port-80-with-multi-web-site-windows-server/

0
Awatar
Odrzuć
Awatar
Ermin Trevisan
Najlepsza odpowiedź

I do not recommend your setup. A proper multi-domain deployment is a set-up with proxy server and SSL. How to do that is truly well documented, see for example here: https://www.odoo.com/forum/help-1/question/odoo-nginx-configuration-with-domain-name-and-db-filtering-for-multiple-domain-name-114775#answer-114777

0
Awatar
Odrzuć
Sean Donovan
Autor

I followed your links, and what you recommend (https://www.odoo.com/forum/help-1/question/odoo-8-0-apache2-how-to-configure-a-proxy-from-an-url-to-a-specific-database-in-a-multi-database-setup-110545#answer-110604) doesn't work with v10 because dashes are no longer allowed in the database name.

Why install any webserver when Odoo can do it by adding a single line to the configuration file.

As for SSL - use Cloudflare with a "Flexible" certificate or "Full" with a server side Let's Encrypt cert.

Ermin Trevisan

Generally, it is definitely not a general use case or recommended procedure to rely on a freemium service for vital deployments if it is not necessary. Additionally I do not consider it as an elegant solution in a multi-tenant multi-client environment, which it is usually the case when using dbfilter.

Ermin Trevisan

As this obviously still gets attention, I have to confirm my critic. A Flexible Cloudflare-Certificate is not a solution as stated by Cloudflare themselves: https://support.cloudflare.com/hc/en-us/articles/200170416-What-do-the-SSL-options-mean-

and if you want to use Full encryption on Cloudflare, you have to show how to install and deploy a certificate on your server using your approach. My recommendation remain: stay away from such advise, set up a proper reverse proxy, meanwhile this is very easy to install and it does not justify to use such flawed methods as presented here.

Podoba Ci się ta dyskusja? Dołącz do niej!

Stwórz konto dzisiaj, aby cieszyć się ekskluzywnymi funkcjami i wchodzić w interakcje z naszą wspaniałą społecznością!

Zarejestruj się
Powiązane posty Odpowiedzi Widoki Czynność
i need to connect odoo with my private domain
domains
Awatar
Awatar
1
sty 19
7745
how to redirect a domain to odoo website? Rozwiązane
domains
Awatar
Awatar
Awatar
2
sty 24
14382
How to run multiple websites, stores, domains with Odoo 8
v8 store multiple multicompany domains
Awatar
0
lut 16
5706
Configure different domains for multi companies
multicompany domains
Awatar
0
paź 25
4383
Can I bring my web design agency to Odoo?
webservices domains
Awatar
0
lis 24
1183
Społeczność
  • Samouczki
  • Dokumentacja
  • Forum
Open Source
  • Pobierz
  • Github
  • Runbot
  • Tłumaczenia
Usługi
  • Hosting Odoo.sh
  • Wsparcie
  • Aktualizacja
  • Indywidualne rozwiązania
  • Edukacja
  • Znajdź księgowego
  • Znajdź partnera
  • Zostań partnerem
O nas
  • Nasza firma
  • Zasoby marki
  • Skontaktuj się z nami
  • Oferty pracy
  • Wydarzenia
  • Podcast
  • Blog
  • Klienci
  • Informacje prawne • Prywatność
  • Bezpieczeństwo Odoo
الْعَرَبيّة 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 ภาษาไทย Türkçe українська Tiếng Việt

Odoo to pakiet aplikacji biznesowych typu open source, które zaspokoją wszystkie potrzeby Twojej firmy: CRM, eCommerce, księgowość, inwentaryzacja, punkt sprzedaży, zarządzanie projektami itp.

Unikalną wartością Odoo jest to, że jest jednocześnie bardzo łatwe w użyciu i w pełni zintegrowane.

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