Skip to Content
Menu
This question has been flagged
3 Replies
6496 Views

I have tried a few different attempts and I keep getting the same issue with too many redirects.

I am still to go through the Odoo installation process, I wanted to install it through the domain and in order to set that up I need to get this reverse proxy working.

I am also using Cloudflare origin server certificates for this. This is the latest NGiNX configuration I have done:

#odoo server
upstream odoo {
server 192.168.4.100:8069;
}
upstream odoochat {
server 192.168.4.100:8072;
}

# http -> https
server {
listen 80;
server_name odoo.mydomain.com;
rewrite ^(.*) https://$host$1 permanent;
}

server {
listen 443 ssl http2;
server_name erp.mydomain.com;
proxy_read_timeout 720s;
proxy_connect_timeout 720s;
proxy_send_timeout 720s;

# Add Headers for odoo proxy mode
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;

# SSL parameters
ssl_certificate /etc/cloudflare/mydomain/odoo/cert.pem;
ssl_certificate_key /etc/cloudflare/mydomain/odoo/key.pem;
ssl_session_timeout 1d;
ssl_session_cache shared:MozSSL:10m; # about 40000 sessions
ssl_session_tickets off;
ssl_protocols TLSv1.2 TLSv1.3;
ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384;
ssl_prefer_server_ciphers off;

# log
access_log /var/log/nginx/odoo.access.log;
error_log /var/log/nginx/odoo.error.log;

# Redirect longpoll requests to odoo longpolling port
location /longpolling {
proxy_pass http://odoochat;
}

# Redirect requests to odoo backend server
location / {
proxy_redirect off;
proxy_pass http://odoo;
}

# common gzip
gzip_types text/css text/scss text/plain text/xml application/xml application/json application/javascript;
gzip on;
}
Avatar
Discard
Best Answer

The issue of "too many redirects" often happens when there is a loop condition in your configuration. In this case, the issue might be because of the server_name directive in your configurations.

You have a server block listening on port 80, which is redirecting all traffic to the https version of the same domain:

server {
listen 80;
server_name odoo.mydomain.com;
rewrite ^(.*) https://$host$1 permanent;
}

However, the server block listening on port 443 is expecting a different domain:

server {
listen 443 ssl http2;
server_name erp.mydomain.com;
...
}

You should modify your configuration to use the same server_name for both the 80 and 443 server bocks. It should look something like this:

# http -> https
server {
listen 80;
server_name odoo.mydomain.com;
rewrite ^(.*) https://$host$1 permanent;
}

server {
listen 443 ssl http2;
server_name odoo.mydomain.com;
...
}

I hope this helps!

Avatar
Discard
Author Best Answer

That nginx config is problematic, it errors out at the domain directive so it seems like it is a dated copy that doesn't work.

nginx: [emerg] unknown directive "odoomates.tech"

line 12


Avatar
Discard

you have replace the above with your domain name in conf file

Best Answer

Hi,

Can you copy this nginx configuration sample and try with this:  https://github.com/odoomates/odoosamples/blob/main/odoo_nginx_conf

video: https://www.youtube.com/watch?v=-hVYQd7A7PQ

configuring domain name in odoo:  https://www.youtube.com/watch?v=BMCOzrAur1A

Thanks

Avatar
Discard
Related Posts Replies Views Activity
3
Jun 25
2628
5
May 25
3675
2
May 25
905
1
Aug 24
1631
0
Jul 24
740