This article mainly introduces the Nginx as Odoo's reverse server configuration, has a certain reference value, now share to everyone, the need for friends can refer to
Nginx installation is slightly.
Using the Web server Nginx as Odoo's reverse proxy server has several advantages:
1. Cache the static content of the webpage and speed up the page loading.
2. Use Nginx to do data distribution, in the distributed deployment situation can break through the server performance limits.
3. If a server has multiple Web services (such as Apache at the same time, Odoo) need to share a 80 port, you can use Nginx as a reverse proxy server based on the user access to the domain name for data distribution.
Modify the nginx.conf configuration file.
As follows
#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 to speed up the loading speed of the OE homepage. 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: Port 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 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$ {# ProX Y_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 # #l ocation ~/\.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; # } #}}
Effect: