Перейти к содержимому
Меню
Чтобы взаимодействовать с сообществом, необходимо зарегистрироваться.
Этот вопрос был отмечен
1 Ответить
4417 Представления

I configured Odoo 11 behind Nginx proxy server, but my UTM link counts stuck after first click. Without proxy server it works just fine.

Any help is appreciated

Nginx upstream config file:

server {
listen      443;
server_name example.com www.example.com;
root        /config/nginx/www;
index       index.html index.htm;

# log files
access_log  /config/log/nginx/openerp.access.log;
error_log   /config/log/nginx/openerp.error.log;

# all ssl related config moved to ssl.conf
# include /config/nginx/ssl.conf;


# proxy buffers
proxy_buffers 16 64k;
proxy_buffer_size 128k;

## default location ##
location / {
    proxy_pass  http://openerp;
    # force timeouts if the backend dies
    proxy_next_upstream error timeout invalid_header http_500 http_502 http_503 http_504;
    proxy_redirect off;

    # set 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 https;
    proxy_set_header    Front-End-Https On;
    proxy_set_header    X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header    X-Forwarded-Host $host;
    proxy_set_header    X-Forwarded-Server $host;
    proxy_set_header    X-Forwarded-Proto $scheme;

}

# cache some static data in memory for 60mins
location ~* /web/static/ {
    proxy_cache_valid 200 60m;
    proxy_buffering on;
    expires 864000;
    proxy_pass http://openerp;
} 
}
Аватар
Отменить
Лучший ответ

Hi, you can follow this: https://youtu.be/-3wV7A_4s-w

Hope it helps

Аватар
Отменить
Related Posts Ответы Просмотры Активность
2
авг. 25
2429
1
июл. 25
919
1
авг. 25
1151
0
мая 25
1360
2
апр. 25
3573