Skip to Content
Odoo Meniu
  • Autentificare
  • Try it free
  • Aplicații
    Finanțe
    • Contabilitate
    • Facturare
    • Cheltuieli
    • Spreadsheet (BI)
    • Documente
    • Semn
    Vânzări
    • CRM
    • Vânzări
    • POS Shop
    • POS Restaurant
    • Abonamente
    • Închiriere
    Site-uri web
    • Constructor de site-uri
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Lanț Aprovizionare
    • Inventar
    • Producție
    • PLM
    • Achiziție
    • Maintenance
    • Calitate
    Resurse Umane
    • Angajați
    • Recrutare
    • Time Off
    • Evaluări
    • Referințe
    • Flotă
    Marketing
    • Social Marketing
    • Marketing prin email
    • SMS Marketing
    • Evenimente
    • Automatizare marketing
    • Sondaje
    Servicii
    • Proiect
    • Foi de pontaj
    • Servicii de teren
    • Centru de asistență
    • Planificare
    • Programări
    Productivitate
    • Discuss
    • Aprobări
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Aplicații Terțe Odoo Studio Platforma Odoo Cloud
  • Industrii
    Retail
    • Book Store
    • Magazin de îmbrăcăminte
    • Magazin de Mobilă
    • Magazin alimentar
    • Magazin de materiale de construcții
    • Magazin de jucării
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Distribuitor de băuturi
    • Hotel
    Proprietate imobiliara
    • Real Estate Agency
    • Firmă de Arhitectură
    • Construcție
    • Estate Managament
    • Grădinărit
    • Asociația Proprietarilor de Proprietăți
    Consultanta
    • Firma de Contabilitate
    • Partener Odoo
    • Agenție de marketing
    • Law firm
    • Atragere de talente
    • Audit & Certification
    Producție
    • Textil
    • Metal
    • Mobilier
    • Mâncare
    • Brewery
    • Cadouri corporate
    Health & Fitness
    • Club Sportiv
    • Magazin de ochelari
    • Centru de Fitness
    • Wellness Practitioners
    • Farmacie
    • Salon de coafură
    Trades
    • Handyman
    • IT Hardware and Support
    • Asigurare socială de stat
    • Cizmar
    • Servicii de curățenie
    • HVAC Services
    Altele
    • Organizație nonprofit
    • Agenție de Mediu
    • Închiriere panouri publicitare
    • Fotografie
    • Închiriere biciclete
    • Asigurare socială
    Browse all Industries
  • Comunitate
    Învăță
    • Tutorials
    • Documentație
    • Certificări
    • Instruire
    • Blog
    • Podcast
    Empower Education
    • Program Educațional
    • Scale Up! Business Game
    • Visit Odoo
    Obține Software-ul
    • Descărcare
    • Compară Edițiile
    • Lansări
    Colaborați
    • Github
    • Forum
    • Evenimente
    • Translations
    • Devino Partener
    • Services for Partners
    • Înregistrează-ți Firma de Contabilitate
    Obține Servicii
    • Găsește un Partener
    • Găsiți un contabil
    • Meet an advisor
    • Servicii de Implementare
    • Referințe ale clienților
    • Suport
    • Actualizări
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obține un demo
  • Prețuri
  • Ajutor

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

  • CRM
  • e-Commerce
  • Contabilitate
  • Inventar
  • PoS
  • Proiect
  • MRP
All apps
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Suport

Odoo 12 website not working in private/incognito window

Abonare

Primiți o notificare când există activitate la acestă postare

Această întrebare a fost marcată
websitesodoo12
2 Răspunsuri
4791 Vizualizări
Imagine profil
Samo Arko

My websites don't work in incognito/private browsers. When I connect to the domain I just get the database selector. If I try to access a site like domain.com/home I get the error: "The requested URL was not found on the server."


I'm using a reverse proxy that redirects to my odoo server and on the server I have nginx that directs to the correct db. The SSL is handled on the reverse proxy that then sends the request to my server on port 80. 


I don't know a lot about nginx so maybe I did something wrong. How can I fix this


odoo.conf

[options]

; This is the password that allows database operations:

admin_passwd = NOTHING

db_host = False

db_port = False

db_user = odoo

db_password = False

db_filter = ^%h$

db_list = False


addons_path = /opt/odoo/odoo12/addons,/opt/odoo/customaddons


xmlrpc_port = 8069

longpolling_port = 8072

proxy_mode = True


; Logging

; log_levels: error, debug, error, info, warn

logfile = /var/log/odoo/odoo.log

log_level = warn

logrotate = True


Nginx vhost

server {

        listen 80;

        server_name domain.com;


        access_log  /var/log/nginx/domain.com.access.log;

        error_log   /var/log/nginx/domain.com.log;


        proxy_buffers 16 64k;

        proxy_buffer_size 128k;


        client_max_body_size 24000M;

        proxy_read_timeout 720s;

        proxy_connect_timeout 720s;

        proxy_send_timeout 720s;


        # Proxy Headers

        proxy_set_header Host $host;

        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;

        proxy_redirect off;


        location / {

                proxy_pass  http://odoo;

                proxy_read_timeout 300000;

        }


        location /longpolling {

                proxy_read_timeout 300000;

                proxy_connect_timeout 75s;

                proxy_pass http://odoo-lp;

        }

}


nginx.conf

user www-data;

worker_processes auto;

pid /run/nginx.pid;

include /etc/nginx/modules-enabled/*.conf;


events {

        worker_connections 768;

        # multi_accept on;

}


http {

        # Custom Settings

        proxy_connect_timeout 900;

        proxy_send_timeout 900;

        proxy_read_timeout 900;

        send_timeout 900;


        sendfile on;

        tcp_nopush on;

        tcp_nodelay on;

        keepalive_timeout 65;

        types_hash_max_size 2048;


        include /etc/nginx/mime.types;

        default_type application/octet-stream;


        ssl_protocols TLSv1 TLSv1.1 TLSv1.2;

        ssl_prefer_server_ciphers on;


        access_log /var/log/nginx/access.log;

        error_log /var/log/nginx/error.log;


        gzip on;

        gzip_disable "msie6";


        upstream odoo {

                server 127.0.0.1:8069 weight=1 fail_timeout=3000s;

        }

        upstream odoo-lp {

                server 127.0.0.1:8072;

        }


        include /etc/nginx/conf.d/*.conf;

        include /etc/nginx/sites-enabled/*;

}





0
Imagine profil
Abandonează
Samo Arko
Autor

setting launch option --no-database-list in my odoo.servise, doesn't help. Just get same window with "The database manager has been disabled by the administrator"

Imagine profil
Samo Arko
Autor Cel mai bun răspuns

The config parameter was wrong db_filter is dbfilter in config 

0
Imagine profil
Abandonează
Enjoying the discussion? Don't just read, join in!

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

Înscrie-te
Related Posts Răspunsuri Vizualizări Activitate
How to remove the 'Powered by Odoo - The #1 Open Source eCommerce' footer from the website? Rezolvat
websites
Imagine profil
Imagine profil
Imagine profil
Imagine profil
3
nov. 25
1929
Custom shop and cart page
websites
Imagine profil
Imagine profil
1
iun. 25
2596
How to enable Popup block in Odoo Website Module
websites
Imagine profil
0
feb. 25
2022
Suddenly disappeared website menu
websites
Imagine profil
Imagine profil
Imagine profil
3
oct. 24
2566
Website Edit not Launching (Odoo v17)
websites
Imagine profil
0
iun. 24
2049
Comunitate
  • Tutorials
  • Documentație
  • Forum
Open Source
  • Descărcare
  • Github
  • Runbot
  • Translations
Servicii
  • Hosting Odoo.sh
  • Suport
  • Actualizare
  • Custom Developments
  • Educație
  • Găsiți un contabil
  • Găsește un Partener
  • Devino Partener
Despre Noi
  • Compania noastră
  • Active de marcă
  • Contactați-ne
  • Locuri de muncă
  • Evenimente
  • Podcast
  • Blog
  • Clienți
  • Aspecte juridice • Confidențialitate
  • Securitate
الْعَرَبيّة 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 este o suită de aplicații de afaceri open source care acoperă toate nevoile companiei dvs.: CRM, comerț electronic, contabilitate, inventar, punct de vânzare, management de proiect etc.

Propunerea de valoare unică a Odoo este să fie în același timp foarte ușor de utilizat și complet integrat.

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