Created
April 15, 2019 11:12
-
-
Save ajepe/a41918cf26f6c2ac1e1090a2365c0aa0 to your computer and use it in GitHub Desktop.
Odoo basic nginx conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#odoo server | |
upstream odoo { | |
server 127.0.0.1:8069; | |
} | |
upstream odoochat { | |
server 127.0.0.1:8072; | |
} | |
# http -> https | |
# server { | |
# listen 80; | |
# server_name odoo.mycompany.com; | |
# rewrite ^(.*) https://$host$1 permanent; | |
#} | |
server { | |
listen 80; | |
server_name *.lvh.me lvh.me; | |
proxy_read_timeout 720s; | |
proxy_connect_timeout 720s; | |
proxy_send_timeout 720s; | |
# Add Headers for odoo proxy mode | |
proxy_set_header X-Forwarded-Host $host; | |
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | |
proxy_set_header X-Forwarded-Proto $scheme; | |
proxy_set_header X-Real-IP $remote_addr; | |
proxy_set_header Host $http_host; | |
proxy_set_header X-Scheme $scheme; | |
proxy_set_header REMOTE_ADDR $remote_addr; | |
# log | |
access_log /var/log/nginx/odoo.access.log; | |
error_log /var/log/nginx/odoo.error.log; | |
# Redirect longpoll requests to odoo longpolling port | |
location /longpolling { | |
proxy_pass http://odoochat; | |
} | |
# Redirect requests to odoo backend server | |
location / { | |
proxy_redirect off; | |
proxy_pass http://odoo; | |
} | |
# common gzip | |
gzip_types text/css text/scss text/plain text/xml application/xml application/json application/javascript; | |
gzip on; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment