安装nginx
sudo apt-get install -y nginx
修改配置文件
vi /etc/nginx/nginx.conf #注释掉下面这行代码 #include /etc/nginx/sites-enabled/*; #保存
在/etc/nginx/conf.d
目录下新建一个配置文件
vi /etc/nginx/conf.d/www.example.com.conf #加入下面的代码 server { listen 80; server_name www.example.com; location / { proxy_pass http://localhost:8069; proxy_redirect off; proxy_set_header Host $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Real-IP $remote_addr; } } #保存 service nginx restart #重启nginx服务
在浏览器中打开www.example.com
便可访问到odoo了。
作者:itrojan
链接:https://www.jianshu.com/p/ea5ccd5ba3ea