Ubuntu14.04下Odoo使用Nginx修改8069端口为80

Posted 郑道杰

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu14.04下Odoo使用Nginx修改8069端口为80相关的知识,希望对你有一定的参考价值。

安装nginx

1 sudo apt-get install -y nginx

修改配置文件

1 vi /etc/nginx/nginx.conf
2 #注释掉下面这行代码
3 #include /etc/nginx/sites-enabled/*;
4 #保存

/etc/nginx/conf.d目录下新建一个配置文件

 1 vi /etc/nginx/conf.d/www.example.com.conf
 2 #加入下面的代码
 3 server {
 4     listen 80;
 5     server_name www.example.com;
 6     
 7     location / {
 8         proxy_pass http://localhost:8069;
 9         proxy_redirect off;
10         proxy_set_header Host $host;
11         proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
12         proxy_set_header X-Real-IP $remote_addr;
13     }
14 }
15 #保存
16 service nginx restart  #重启nginx服务

在浏览器中打开www.example.com便可访问到odoo了。

 

  

以上是关于Ubuntu14.04下Odoo使用Nginx修改8069端口为80的主要内容,如果未能解决你的问题,请参考以下文章

(01)odoo8.0_Ubuntu14.04源码安装

Ubuntu14.04安装lnmp(nginx+php-fpm+mysql), nginx reload总是fail,附操作步骤,请指点,谢谢。

MariaDB + phpmyadmin 在 ubuntu 14.04 上使用 Nginx

ubuntu 14.04 使用 Nginx 代理 netcore

Ubuntu14.04 安装nginx+php5-fpm 后访问php页面空白,怎么解决

ubuntu 14.04安装nginx+php