Ir al contenido
Odoo Menú
  • Iniciar sesión
  • Pruébalo gratis
  • Aplicaciones
    Finanzas
    • Contabilidad
    • Facturación
    • Gastos
    • Hoja de cálculo (BI)
    • Documentos
    • Firma electrónica
    Ventas
    • CRM
    • Ventas
    • PdV para tiendas
    • PdV para restaurantes
    • Suscripciones
    • Alquiler
    Sitios web
    • Creador de sitios web
    • Comercio electrónico
    • Blog
    • Foro
    • Chat en vivo
    • eLearning
    Cadena de suministro
    • Inventario
    • Manufactura
    • PLM
    • Compras
    • Mantenimiento
    • Calidad
    Recursos humanos
    • Empleados
    • Reclutamiento
    • Vacaciones
    • Evaluaciones
    • Referencias
    • Flotilla
    Marketing
    • Redes sociales
    • Marketing por correo
    • Marketing por SMS
    • Eventos
    • Automatización de marketing
    • Encuestas
    Servicios
    • Proyectos
    • Registro de horas
    • Servicio externo
    • Soporte al cliente
    • Planeación
    • Citas
    Productividad
    • Conversaciones
    • Aprobaciones
    • IoT
    • VoIP
    • Artículos
    • WhatsApp
    Aplicaciones externas Studio de Odoo Plataforma de Odoo en la nube
  • Industrias
    Venta minorista
    • Librería
    • Tienda de ropa
    • Mueblería
    • Tienda de abarrotes
    • Ferretería
    • Juguetería
    Alimentos y hospitalidad
    • Bar y pub
    • Restaurante
    • Comida rápida
    • Casa de huéspedes
    • Distribuidora de bebidas
    • Hotel
    Bienes inmuebles
    • Agencia inmobiliaria
    • Estudio de arquitectura
    • Construcción
    • Gestión de bienes inmuebles
    • Jardinería
    • Asociación de propietarios
    Consultoría
    • Firma contable
    • Partner de Odoo
    • Agencia de marketing
    • Bufete de abogados
    • Adquisición de talentos
    • Auditorías y certificaciones
    Manufactura
    • Textil
    • Metal
    • Muebles
    • Comida
    • Cervecería
    • Regalos corporativos
    Salud y ejercicio
    • Club deportivo
    • Óptica
    • Gimnasio
    • Especialistas en bienestar
    • Farmacia
    • Peluquería
    Trades
    • Personal de mantenimiento
    • Hardware y soporte de TI
    • Sistemas de energía solar
    • Zapateros y fabricantes de calzado
    • Servicios de limpieza
    • Servicios de calefacción, ventilación y aire acondicionado
    Otros
    • Organización sin fines de lucro
    • Agencia para la protección del medio ambiente
    • Alquiler de anuncios publicitarios
    • Fotografía
    • Alquiler de bicicletas
    • Distribuidor de software
    Descubre todas las industrias
  • Odoo Community
    Aprende
    • Tutoriales
    • Documentación
    • Certificaciones
    • Capacitación
    • Blog
    • Podcast
    Fortalece la educación
    • Programa educativo
    • Scale Up! El juego empresarial
    • Visita Odoo
    Obtén el software
    • Descargar
    • Compara ediciones
    • Versiones
    Colabora
    • GitHub
    • Foro
    • Eventos
    • Traducciones
    • Conviértete en partner
    • Servicios para partners
    • Registra tu firma contable
    Obtén servicios
    • Encuentra un partner
    • Encuentra un contador
    • Contacta a un consultor
    • Servicios de implementación
    • Referencias de clientes
    • Soporte
    • Actualizaciones
    GitHub YouTube Twitter LinkedIn Instagram Facebook Spotify
    +1 (650) 691-3277
    Solicita una demostración
  • Precios
  • Ayuda

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

  • CRM
  • e-Commerce
  • Contabilidad
  • Inventario
  • PoS
  • Proyectos
  • MRP
All apps
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Ayuda

'noindex' in meta tags even when robots.txt have been updated & Websocket Error

Suscribirse

Reciba una notificación cuando haya actividad en esta publicación

Se marcó esta pregunta
robots.txtindexingSEOnoindexWebsocket
3 Respuestas
3914 Vistas
Avatar
Drew

I'm on Odoo v16 community via docker deployment with nginx reverse proxy. 


I have 2 issues. 

1. First is that I can't get my websocket working and suspect this is the reason my livechat via Discussions isn't working. the port 8069 is the only port listening in my docker even though I exposed ports 8071 and 8072 for longpolling and websocket respectively. I have configured forwarding in nginx for both cases on these ports but that doesn't make much difference if I have no listeners in my docker instance. 

  • proxy_mode = True
  • xmlrpc_port = 8069
  • xmlrpcs_port = 8071
  • longpolling_port 8072
  • Workers = 3
  • xmlrpcs_interface =   
  • workers =3
  • max_cront_threads = 2

Nginx: 

                location /websocket {

                        #ssi off;

                        proxy_redirect off;

                        proxy_pass http://odoo-rpcs ;

                        proxy_set_header Upgrade $http_upgrade;

                        proxy_set_header Connection $connection_upgrade;

                        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_set_header X-Real-IP $remote_addr;

                 }


               location /longpolling {

                       proxy_connect_timeout   3600;

                       proxy_read_timeout      3600;

                       proxy_send_timeout      3600;

                       send_timeout            3600;

                       proxy_pass http://odoo-chat;

                 }


Docker run command: 

docker run -v /odoo/data:/var/lib/odoo -d -p 127.0.0.1:8069:8069 -p 8069:8069 -p 8072:8072 -e PASSWORD=odoo -e HOST=odoodb --name odootest --restart unless-stopped --network odoo -t odoo16


Error Log: 


INFO werkzeug: 10.89.1.1 - - [02/Feb/2024 01:04:35] "GET /websocket HTTP/1.0" 400 - 2 

ERROR odoodb odoo.addons.bus.websocket: 400 Bad Request: Empty or missing header(s): upgrade



Problem 2.

   is tagged on all my site pages preventing bot SEO scans. 


tag in html is preventing Google Search Console scanning. Robots.txt and Sitemap.xml are working and are reachable.  Although the robots.txt update is NOT working via the Website-->Config-->Edit robots.txt.   I have to manually update from Dev view --> technical --> Views --> Robots.txt



Robots:

User-agent: *
Allow: /
Allow: *

User-agent: Googlebot-news
Allow: /

User-agent: Googlebot
Allow: /


I've searched and have tried various addons but nothing working to remove this! 





0
Avatar
Descartar
Avatar
Drew
Autor Mejor respuesta

Go to Homepage:  Site--> HTML/CSS --> dropdown MainLayout with XML(HTML)


Search in website.layout   for robots

Edit the Robots URL Checks or remove line entirely.....

       
"""   

 ##   ///    meta t-if(main_object and 'website_indexed' in main_object and not main_object.website_indexed) or (website.domain and not website._is_indexable_url(request.httprequest.url_root))" name="robots" content="noindex" ////

"""



       




0
Avatar
Descartar
Avatar
Maxime Etenaille
Mejor respuesta

Thanks Drew !

0
Avatar
Descartar
Avatar
Charles J WImbauer
Mejor respuesta

Thanks Drew, I just changed mine form noindex, to index. Google likes it now. It took me longer to find than fix.

0
Avatar
Descartar
¿Le interesa esta conversación? ¡Participe en ella!

Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.

Registrarse
Publicaciones relacionadas Respuestas Vistas Actividad
noindex tag blocking indexing, robots.txt not updating, and sitemap.xml not generating Resuelto
tags odoo16features indexing SEO noindex
Avatar
Avatar
1
dic 24
4311
Website 'noindex' tag Blocking Indexing
robots.txt noindex
Avatar
1
abr 23
4692
'noindex' in meta tags even when robots.txt have been updated
website_builder odoo16features indexing SEO
Avatar
Avatar
1
abr 24
4369
How to fix odoo.sh disabling the robots.txt file
website robots.txt Robots.txt SEO Odoo17
Avatar
0
jul 24
2450
Only a Few Pages Indexed by Google Despite Sitemap Listing All Pages Resuelto
SEO
Avatar
Avatar
1
oct 25
319
Comunidad
  • Tutoriales
  • Documentación
  • Foro
Código abierto
  • Descargar
  • GitHub
  • Runbot
  • Traducciones
Servicios
  • Alojamiento en Odoo.sh
  • Soporte
  • Actualizaciones del software
  • Desarrollos personalizados
  • Educación
  • Encuentra un contador
  • Encuentra un partner
  • Conviértete en partner
Sobre nosotros
  • Nuestra empresa
  • Activos de marca
  • Contáctanos
  • Empleos
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • Legal • Privacidad
  • Seguridad
الْعَرَبيّة 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 es un conjunto de aplicaciones de código abierto que cubren todas las necesidades de tu empresa: CRM, comercio electrónico, contabilidad, inventario, punto de venta, gestión de proyectos, etc.

La propuesta única de valor de Odoo es ser muy fácil de usar y estar totalmente integrado.

Sitio web hecho con

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