Ir al contenido
Odoo Menú
  • Identificarse
  • Pruébalo gratis
  • Aplicaciones
    Finanzas
    • Contabilidad
    • Facturación
    • Gastos
    • Hoja de cálculo (BI)
    • Documentos
    • Firma electrónica
    Ventas
    • CRM
    • Ventas
    • TPV para tiendas
    • TPV para restaurantes
    • Suscripciones
    • Alquiler
    Sitios web
    • Creador de sitios web
    • Comercio electrónico
    • Blog
    • Foro
    • Chat en directo
    • eLearning
    Cadena de suministro
    • Inventario
    • Fabricación
    • PLM
    • Compra
    • Mantenimiento
    • Calidad
    Recursos Humanos
    • Empleados
    • Reclutamiento
    • Ausencias
    • Evaluación
    • Referencias
    • Flota
    Marketing
    • Marketing social
    • Marketing por correo electrónico
    • Marketing por SMS
    • Eventos
    • Automatización de marketing
    • Encuestas
    Servicios
    • Proyecto
    • Partes de horas
    • Servicio de campo
    • Servicio de asistencia
    • Planificación
    • Citas
    Productividad
    • Conversaciones
    • Aprobaciones
    • IoT
    • VoIP
    • Información
    • WhatsApp
    Aplicaciones de terceros Studio de Odoo Plataforma de Odoo Cloud
  • Industrias
    Comercio al por menor
    • Librería
    • Tienda de ropa
    • Tienda de muebles
    • Tienda de ultramarinos
    • Ferretería
    • Juguetería
    Alimentación y hostelería
    • Bar y taberna
    • Restaurante
    • Comida rápida
    • Casa de huéspedes
    • Distribuidor de bebidas
    • Hotel
    Inmueble
    • Agencia inmobiliaria
    • Estudio de arquitectura
    • Construcción
    • Gestión inmobiliaria
    • Jardinería
    • Asociación de propietarios
    Consultoría
    • Empresa contable
    • Partner de Odoo
    • Agencia de marketing
    • Bufete de abogados
    • Adquisición de talentos
    • Auditorías y certificaciones
    Fabricación
    • Textil
    • Metal
    • Muebles
    • Alimentos
    • Brewery
    • Regalos de empresas
    Salud y bienestar
    • Club deportivo
    • Óptica
    • Gimnasio
    • Terapeutas
    • Farmacia
    • Peluquería
    Oficios
    • Handyman
    • Hardware y asistencia informática
    • Sistemas de energía solar
    • Zapatero
    • Servicios de limpieza
    • Servicios de calefacción, ventilación y aire acondicionado
    Otros
    • Organización sin ánimo de lucro
    • Agencia de protección del medio ambiente
    • Alquiler de paneles publicitarios
    • Estudio fotográfico
    • Alquiler de bicicletas
    • Distribuidor de software
    Browse all Industries
  • Comunidad
    Aprender
    • Tutoriales
    • Documentación
    • Certificaciones
    • Formación
    • Blog
    • Podcast
    Potenciar la educación
    • Programa de formación
    • Scale Up! El juego empresarial
    • Visita Odoo
    Obtener el software
    • Descargar
    • Comparar ediciones
    • Versiones
    Colaborar
    • GitHub
    • Foro
    • Eventos
    • Traducciones
    • Convertirse en partner
    • Services for Partners
    • Registrar tu empresa contable
    Obtener servicios
    • Encontrar un partner
    • Encontrar un asesor fiscal
    • Contacta con un experto
    • Servicios de implementación
    • Referencias de clientes
    • Ayuda
    • Actualizaciones
    GitHub YouTube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Solicitar 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
  • Proyecto
  • 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

How to force SSL in Odoo8 on CentOS shared hosting?

Suscribirse

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

Se marcó esta pregunta
sslhttps
5 Respuestas
7435 Vistas
Avatar
Peter A

I've seen a number of tutorials explaining how to set up SSL for Odoo 8 that involve editing Apache conf files or nginx conf files, but I don't have access to those. I can only access the Odoo files and files in my user directort.

This thread <https://www.odoo.com/forum/help-1/question/how-to-set-up-odoo-8-with-ssl-and-apache2-61282> talks about adding lines to odoo.conf, but I can't find the odoo.conf file.

And I've tried changing web.base.url (in System Parameters) to https, but after I log out and log back in it's always back to http again.

-1
Avatar
Descartar
Temur

a side question: How do you managed to install odoo on the shared hosting?

Temur

if odoo.conf does not exist, you can create one. then pass to odoo the option: --config=/path/to/odoo.conf

Peter A
Autor

My web host is Webfaction, and it's shared hosting but with lots of options, not like most shared hosting which is very restrictive. So I installed Odoo8 as a "custom app listening on port" 8069. Then I installed a private instance of postgreSQL. Odoo works fine, but a little slow so far. I need to try to optimize it.

Avatar
Peter A
Autor Mejor respuesta

Thank you. I managed to get SSL working, but not in the traditional way — it's kind of a hack: I set up an .htaccess file on the http:// version of the URL that says:

RewriteEngine On
RewriteCond %{HTTP:X-Forwarded-SSL} !on
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

And I think it's working properly, because I'm not getting any browser warnings about insecure content. This particular RewriteCond using HTTP:X-Forwarded-SSL is recommended by my host, Webfaction.

I did locate a configuration file called .openerp_serverrc at the path ~/$HOME/.openerp_serverrc and I set the proxy_mode = True

I did not set up a private Apache or Nginx server for the installation of Odoo, but the way Webfaction works, the Odoo site is automatically being served by Nginx.

1
Avatar
Descartar
Ermin Trevisan

This looks like Apache vhost definition to me (just a sidenote). However, using .htaccess is not a hack, but the proper way when you do not have an open system provided by your hoster.

Avatar
Ermin Trevisan
Mejor respuesta

Depending on how you installed Odoo, the name of your "odoo.conf" can also be openerp-server.conf and it can be located in /etc/odoo directory for example.

There you need the following entry: proxy_mode = True

However, this does not help if you do not have enough access rights to your server in order to complete all necessary steps to install and set up your Apache or Nginx server. So you should revert to your hosting provider to get the necessary help.

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

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

Inscribirse
Publicaciones relacionadas Respuestas Vistas Actividad
Can anyone help me for fixing this? it said my website not secure
ssl https
Avatar
0
ene 24
2789
Problems while switching to HTTPS - mixing unsecure connections to resources.
ssl https
Avatar
Avatar
Avatar
3
oct 18
11477
Unable to attach files in Odoo when using HTTPS via nginx Resuelto
nginx ssl https
Avatar
Avatar
Avatar
Avatar
3
may 24
17407
odoo 11.0 web.base.url Resuelto
ssl https redirect
Avatar
1
feb 18
8915
Mixed Content error on website module
https
Avatar
Avatar
Avatar
Avatar
3
jun 25
2883
Comunidad
  • Tutoriales
  • Documentación
  • Foro
Código abierto
  • Descargar
  • GitHub
  • Runbot
  • Traducciones
Servicios
  • Alojamiento Odoo.sh
  • Ayuda
  • Actualizar
  • Desarrollos personalizados
  • Educación
  • Encontrar un asesor fiscal
  • Encontrar un partner
  • Convertirse en partner
Sobre nosotros
  • Nuestra empresa
  • Activos de marca
  • Contacta con nosotros
  • Puestos de trabajo
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • Información 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 totalmente integrado.

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