Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

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

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

Website and OpenERP on a VPS Server with subdomain, How to ?

Subscriure's

Get notified when there's activity on this post

This question has been flagged
databasepostgresqlnginxcloudphpipsubdomainopenerp7openerpvpsapache2website
1 Respondre
9494 Vistes
Avatar
ThackerS (ts)

Good evening everyone.
For 5 days, I'm stuck on a problem I have to solve for one of my clients. Here's the problem.
My client has a VPS server. The server has an IP address (eg 192.168.1.1) and is connected to a domain name (eg http://www.bigme.com).

The customer wants his website and openerp is available on the same VPS.

Website coded in php would be available at http://www.bigme.com and openerp would be available at http://demo.bigme.com where demo is openerp database. Here's an example of what I have realized :

website: http://www.dailyerp.net/
openerp: http://lonlon.dailyerp.net/
lonlon is the database of openerp.
(eg: If I select the database "tutu", so I will get : http://tutu.bigme.com)

Actually, I know that the problem can be solved with a configuration at the web server. Which web server should i use apache2 or nginx for better performance ? How i can do it ? How I should proceed?
Any help would be welcome.

NB: I use openerp version 7

0
Avatar
Descartar
Avatar
Ben Bernard
Best Answer

Which web server should i use apache2 or nginx for better performance ?

I have learnt that performance is not a real issue in an early project. In your case I will choose nginx because its simplicity. For me, nginx configuration is easier to read than apache configuration.

My solution is something like this.

  • dabase name convention : should be in lowercase
  • default server is www.localhost.local (php web server). It should be replaced with real domain.
  • openerp server is openerp.localhost.local
  • any access to subdomain other than 'openerp' will be redirected to openerp.localhost.local

The http context is something like the following.

http {
    include       mime.types;
    default_type  application/octet-stream;

    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    server_names_hash_bucket_size 64;
    
    upstream openerp {
        server 127.0.0.1:8869;
    }
        
    server {
        listen       80;
        server_name  www.localhost.local;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            # it could be php app
            try_files $uri $uri/ /index.html;
        }
         
        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
    }

    server {
        listen       80;
        server_name ~^(?<subdomain>.*)\.localhost\.local$;
        
        if ($subdomain != 'openerp') {
            rewrite ^ http://openerp.localhost.local/?db=$subdomain last;
        }
    }
    
    server {
        listen       80;
        server_name  openerp.localhost.local;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            try_files $uri @python_openerp;
        }

        location @python_openerp {
            proxy_set_header  X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_set_header  X-Forwarded-Proto $scheme;
            proxy_set_header Host $host;
            proxy_redirect off;
            proxy_read_timeout 300;
            proxy_pass http://openerp;
        }       
        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
    }
}

And don't forget to edit the hosts file.

0
Avatar
Descartar
ThackerS (ts)
Autor

Hi dear Ben. Thank you for your reply. i have many question : 1) upstream openerp { server 127.0.0.1:8869; } In my case, if my VPS IP is 192.168.12.1, i will have : upstream openerp { server 192.168.12.1:8069; } where 8069 is the port of openerp ?? 2) server { listen 80; server_name www.localhost.local; .... } In my case, if my domain is www.bigme.com, i will have servername www.bigme.com ?? 3) server { listen 80; server_name openerp.localhost.local; ... } In my case, if my domain is www.bigme.com, i will have openerp.bigme.com ?? 4) With the nginx code above, i will get subdomain dynamically ( something like db1.bigme.com if i select the database db1 of openerp) ?? 5) Finally, you talk about the hosts file of my VPS ? If yes why should i edit it ? thankk you.

Ben Bernard

1) yes. 2) yes. 3) yes. 4) No, this configuration is for reverse behavior, ie. you type db1.bigme.com and it will be redirected to openerp.bigme.com/?db=db1. 5) To resove your subdomain name in test mode. In production, maybe you should edit your dns record.

Ben Bernard

As a second though, depends on reverse proxy configuration is limited to number of odoo services and odoo default url scheme. There is another solution where you can make one odoo instance per subdomain (and hide the ?db=mydb url option). Other solution is to hack odoo code and make the db filtered by subdomain. My point is to make no redundant data about which db is being chosen, either from subdomain or url.

ThackerS (ts)
Autor

Hi Ben. I see you master the subject. Please, could you give me some links that will help me, because I have not understood.

ThackerS (ts)
Autor

Please sees the 2 links (http://www.dailyerp.net/ and http://lonlon.dailyerp.net/) ==> it's exactly what i want to do. And my openerp instance can be run with the url : db.mydomain.com with db= my openerp database.

Ben Bernard

Maybe you interested with this question https://www.odoo.com/forum/help-1/question/separate-databases-on-different-ports-61813

ThackerS (ts)
Autor

it's not my real thinking

Enjoying the discussion? Don't just read, join in!

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

Registrar-se
Related Posts Respostes Vistes Activitat
Install openerp v7 and a php website on the same VPS server
postgresql v7 php url openerp vps
Avatar
Avatar
Avatar
4
de març 16
9717
Run website/portal on different domain
database nginx portal loginpage website
Avatar
0
d’ag. 21
5310
Query Cloud Hosted Odoo PostgreSQL from external source Solved
database postgresql cloud query 12.0
Avatar
Avatar
2
de jul. 19
5371
How to get the database list using XMLRPC webservice with Php ?
database postgresql php xmlrpc webservice
Avatar
Avatar
1
de març 15
9119
Deploy openerp 7 in production environment, How to ? Solved
windows server ubuntu cloud deployment localhost openerp7 openerp vps deploy v14
Avatar
Avatar
1
de març 15
7128
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة 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 és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

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