zoukankan      html  css  js  c++  java
  • 【转】odoo nginx 配置

    ## OpenERP backend ##
    upstream odoo {
        server 127.0.0.1:8069 weight=1 fail_timeout=0;
    }
     
    upstream odoo-im {
        server 127.0.0.1:8072 weight=1 fail_timeout=0;
    }
     
    ## https site##
    server {
        listen      80;
        server_name odoo.domain.tld;
        root        /usr/share/nginx/html;
        index       index.html index.htm;
     
        # log files
        access_log  /var/log/nginx/odoo.domain.tld.access.log;
        error_log   /var/log/nginx/odoo.domain.tld.error.log;
     
        # proxy buffers
        proxy_buffers 16 64k;
        proxy_buffer_size 128k;
     
        ## default location ##
        location / {
            proxy_pass  http://odoo;
            # force timeouts if the backend dies
            proxy_next_upstream error timeout invalid_header http_500 http_502 http_503 http_504;
            proxy_redirect off;
        proxy_read_timeout 300000;
         
            # 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;
        }
     
        # cache some static data in memory for 60mins
        location ~* /web/static/ {
            proxy_cache_valid 200 60m;
            proxy_buffering on;
            expires 864000;
            proxy_pass http://odoo;
        }
     
        location /longpolling {
            proxy_pass http://odoo-im;
        }
    }

    原文地址:http://www.cnblogs.com/liu-xiaoyi/p/9871060.html

  • 相关阅读:
    数据库 连接(join)
    Linux top
    Game2048
    黑豆白豆问题
    1000个苹果10箱
    Jconsole
    八数码 Java实现
    两数之和
    磁盘调度算法
    常见应用网络层次
  • 原文地址:https://www.cnblogs.com/eedc/p/10032087.html
Copyright © 2011-2022 走看看