ホームページ  >  記事  >  バックエンド開発  >  odoo のリバースサーバー構成としての nginx

odoo のリバースサーバー構成としての nginx

不言
不言オリジナル
2018-05-03 09:20:293732ブラウズ

この記事では、odoo のリバースサーバーとしての nginx の構成を主に紹介します。必要な友人はそれを参照してください。

nginx インストールガイド。

Web サーバー nginx を odoo のリバース プロキシ サーバーとして使用すると、次の利点があります:

1. Web ページの静的コンテンツをキャッシュし、Web ページの読み込み速度を高速化します。

2. データ分散に nginx を使用すると、分散展開におけるサーバーのパフォーマンス制限を突破できます。

3. サーバーにポート 80 を共有する必要がある複数の Web サービス (同時に Apache と odoo など) がある場合、nginx をリバース プロキシ サーバーとして使用して、アクセスしたドメイン名に従ってデータを分散できます。ユーザー。

nginx.conf設定ファイルを変更します。

以下

#user  nobody;
worker_processes  1;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;

    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;    
    gzip  on;  #开启gzip,加快oe首页的加载速度。    server {
        listen       80;   #监听80端口
        server_name  59.110.222.158;  #

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            proxy_pass http://59.110.222.158:8069;    #反向代理服务器的ip:端口
            proxy_set_header X-Real-Ip $remote_addr;
            proxy_set_header X-Forwarded-For $remote_addr;
        }
        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        #location ~ \.php$ {
        #    root           html;
        #    fastcgi_pass   127.0.0.1:9000;
        #    fastcgi_index  index.php;
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
        #}

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }


    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}


    # HTTPS server
    #
    #server {
    #    listen       443 ssl;
    #    server_name  localhost;

    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;

    #    ssl_session_cache    shared:SSL:1m;
    #    ssl_session_timeout  5m;

    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers  on;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}

}

効果:


関連する推奨事項:

PHPの展開について考える

nginxの設定PHPの問題解決

以上がodoo のリバースサーバー構成としての nginxの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。