콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
1 회신
4434 화면

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

아바타
취소
관련 게시물 답글 화면 활동
2
8월 25
2447
1
7월 25
921
1
8월 25
1151
0
5월 25
1364
2
4월 25
3575