{"id":27618,"date":"2018-07-26T04:18:07","date_gmt":"2018-07-26T09:18:07","guid":{"rendered":"https:\/\/www.rosehosting.com\/blog\/?p=27618"},"modified":"2022-06-03T03:34:47","modified_gmt":"2022-06-03T08:34:47","slug":"how-to-install-odoo-11-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/how-to-install-odoo-11-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/","title":{"rendered":"How to Install Odoo 11 on Ubuntu 16.04 with Nginx as a Reverse Proxy"},"content":{"rendered":"
<\/div>

\"How<\/p>\n

In this tutorial we will guide you through the steps of installing Odoo 11 on Ubuntu 16.04. We will also install Nginx web server and configure it as a reverse proxy. Odoo (formerly OpenERP) is simple and intuitive suite of open-source enterprise management applications such as Website Builder, eCommerce, CRM, Accounting, Manufacturing, Project and Warehouse Management, Human Resources, Marketing and many more. Used by more than 3.7 million users ranging from startups to large companies, it is one of the most popular software of this type in the world. Odoo comes in two editions, Community edition which is free and Enterprise edition. In our case we will install and use the Community edition of Odoo.<\/p>\n

Prerequisites<\/strong><\/h3>\n

Ubuntu 16.04 VPS<\/a>. We will use one of our SSD 2 VPS hosting plans.
\n– SSH access with root privileges
\n– PostgreSQL server
\n– Python version 3
\n– Nginx web server<\/p>\n

Login via SSH and update the system<\/h3>\n

Login to your Ubuntu 16.04 VPS with SSH as user root<\/p>\n

ssh root@IP_Address -p Port_number<\/pre>\n

Once you are logged in, run the following command to update all intalled packages to the latest available version<\/p>\n

apt update && apt upgrade<\/pre>\n

If it is not already enabled, you can enable automatic updates<\/a> on your Ubuntu 16.04 VPS.<\/p>\n

Install PostgreSQL server<\/strong><\/h3>\n

\"InstallOdoo needs a PostgreSQL database to store its information, so we will have to install PostgreSQL server<\/a>. PostgreSQL can be easily installed with the<\/p>\n

apt install -y postgresql<\/pre>\n

Once it is installed, enable the PostgreSQL server to start automatically upon server reboot<\/p>\n

systemctl enable postgresql<\/pre>\n

Add repository and install Odoo<\/strong><\/h3>\n

Odoo is not available in the official Ubuntu 16.04 repository, so in order to install it we will need to add the Odoo repository to the server. In order to do it, run the following commands<\/p>\n

wget -O - https:\/\/nightly.odoo.com\/odoo.key | apt-key add -\necho \"deb http:\/\/nightly.odoo.com\/11.0\/nightly\/deb\/ .\/\" >> \/etc\/apt\/sources.list.d\/odoo.list<\/pre>\n

Next, update the local package database<\/p>\n

apt update<\/pre>\n

and install Odoo using the apt package manager<\/p>\n

apt -y install odoo<\/pre>\n

This command will install Odoo, Python 3 and all necessary Python modules, create PostgreSQL user and start the Odoo instance. After the installation completes, you can check the status of the Odoo service:<\/p>\n

systemctl status odoo<\/pre>\n

Output:<\/p>\n

\u25cf odoo.service - Odoo Open Source ERP and CRM\n   Loaded: loaded (\/lib\/systemd\/system\/odoo.service; enabled; vendor preset: enabled)\n   Active: active (running)\n Main PID: 7693 (odoo)\n   CGroup: \/system.slice\/odoo.service\n           \u2514\u25007693 \/usr\/bin\/python3 \/usr\/bin\/odoo --config \/etc\/odoo\/odoo.conf --logfile \/var\/log\/odoo\/odoo-server.log<\/pre>\n

After the installation is completed, edit Odoo’s configuration file and set the master admin password.<\/p>\n

nano \/etc\/odoo\/odoo.conf<\/pre>\n

Uncomment the ‘admin_passwrd’ line, and set a password as shown below<\/p>\n

admin_passwd = MASTER_PASSWORD<\/pre>\n

where MASTER_PASSWORD is an actual strong password.<\/p>\n

Restart the Odoo instance for the changes to take effect<\/p>\n

systemctl restart odoo<\/pre>\n

At this point you should be able to access Odoo using your server’s IP address. Open your favorite web browser and navigate to http:\/\/IP_Address:8069<\/p>\n

\"Installing<\/p>\n

Install Nginx web server and configure reverse proxy<\/strong><\/h3>\n

In order to be able to access Odoo with a domain name, instead of typing the IP address and the port number, we need a web server. In this tutorial we will install and use Nginx. Run the following command to install it<\/p>\n

apt -y install nginx<\/pre>\n

and enable it to start on server boot<\/p>\n

systemctl enable nginx<\/pre>\n

Create Nginx server block for the domain name you will use for accessing Odoo. For example, we will use odoo.com<\/p>\n

nano \/etc\/nginx\/sites-available\/odoo.com\n\nupstream oddo {\n    server 127.0.0.1:8069;\n}\n\nserver {\n    listen      80;\n    server_name odoo.com;\n\n    access_log  \/var\/log\/nginx\/odoo.com.access.log;\n    error_log   \/var\/log\/nginx\/odoo.com.error.log;\n\n    proxy_buffers 16 64k;\n    proxy_buffer_size 128k;\n\n    location \/ {\n        proxy_pass  http:\/\/oddo;\n        proxy_next_upstream error timeout invalid_header http_500 http_502 http_503 http_504;\n        proxy_redirect off;\n\n        proxy_set_header    Host            $host;\n        proxy_set_header    X-Real-IP       $remote_addr;\n        proxy_set_header    X-Forwarded-For $proxy_add_x_forwarded_for;\n        proxy_set_header    X-Forwarded-Proto https;\n    }\n\n    location ~* \/web\/static\/ {\n        proxy_cache_valid 200 60m;\n        proxy_buffering on;\n        expires 864000;\n        proxy_pass http:\/\/oddo;\n    }\n}<\/pre>\n

Save the file and activate the Nginx block by creating a symbolic link<\/p>\n

ln -s \/etc\/nginx\/sites-available\/odoo.com \/etc\/nginx\/sites-enabled\/odoo.com<\/pre>\n

restart the web server for the changes to take effect<\/p>\n

systemctl restart nginx<\/pre>\n

That’s all. If you closely followed the steps in this tutorial, you successfully installed Odoo 11 and configure Nginx as a reverse proxy. Now, you should be able to access Odoo with your domain name, create your first Odoo database using the master password we set earlier in this tutorial, and start working on your project.<\/p>\n

For more information about Odoo 11, its features and configuration, please check their official documentation<\/a>.<\/p>\n


\n

\"OdooOf course, you don’t have to know how to install Odoo 11 on Ubuntu 16.04 with Nginx as a Reverse Proxy if you have a Odoo VPS Hosting<\/a> with us. You can simply ask our administrators to install Odoo 11 on Ubuntu 16.04 for you. They\u2019re available 24\/7, and will be able to help you with the installation of Odoo 11 on Ubuntu 16.04.<\/p>\n

PS.<\/strong><\/span> If you enjoy reading this blog post on How to Install Odoo 11 on Ubuntu 16.04 with Nginx as a Reverse Proxy, feel free to share it on social networks using the shortcuts below, or simply leave a comment.<\/p>\n

New version available here: How to Install Odoo 12 on Ubuntu 18.04 with Nginx as a Reverse Proxy<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"

In this tutorial we will guide you through the steps of installing Odoo 11 on Ubuntu 16.04. We will also … <\/p>\n

Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":27699,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1710,1711,13,1698],"tags":[49,464,59],"yoast_head":"\nHow to Install Odoo 11 on Ubuntu 16.04 with Nginx as a Reverse Proxy - RoseHosting<\/title>\n<meta name=\"description\" content=\"How to Install Odoo 11 on Ubuntu 16.04 with Nginx as a Reverse Proxy - RoseHosting\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-odoo-11-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Odoo 11 on Ubuntu 16.04 with Nginx as a Reverse Proxy - RoseHosting\" \/>\n<meta property=\"og:description\" content=\"How to Install Odoo 11 on Ubuntu 16.04 with Nginx as a Reverse Proxy - RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-odoo-11-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/\" \/>\n<meta property=\"og:site_name\" content=\"RoseHosting\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/RoseHosting\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/rosehosting.helpdesk\" \/>\n<meta property=\"article:published_time\" content=\"2018-07-26T09:18:07+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-03T08:34:47+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/07\/How-to-Install-Odoo-11-on-Ubuntu-16.04-with-Nginx-as-a-Reverse-Proxy.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"372\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Jeff Wilson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:site\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jeff Wilson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-odoo-11-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-odoo-11-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"How to Install Odoo 11 on Ubuntu 16.04 with Nginx as a Reverse Proxy\",\"datePublished\":\"2018-07-26T09:18:07+00:00\",\"dateModified\":\"2022-06-03T08:34:47+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-odoo-11-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/\"},\"wordCount\":688,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-odoo-11-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/07\/How-to-Install-Odoo-11-on-Ubuntu-16.04-with-Nginx-as-a-Reverse-Proxy.jpg\",\"keywords\":[\"nginx\",\"odoo\",\"ubuntu\"],\"articleSection\":[\"CMS, CRM, ERP\",\"E-Commerce\",\"Tutorials\",\"Ubuntu\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/how-to-install-odoo-11-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-odoo-11-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-odoo-11-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/\",\"name\":\"How to Install Odoo 11 on Ubuntu 16.04 with Nginx as a Reverse Proxy - RoseHosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-odoo-11-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-odoo-11-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/07\/How-to-Install-Odoo-11-on-Ubuntu-16.04-with-Nginx-as-a-Reverse-Proxy.jpg\",\"datePublished\":\"2018-07-26T09:18:07+00:00\",\"dateModified\":\"2022-06-03T08:34:47+00:00\",\"description\":\"How to Install Odoo 11 on Ubuntu 16.04 with Nginx as a Reverse Proxy - RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-odoo-11-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/how-to-install-odoo-11-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-odoo-11-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/#primaryimage\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/07\/How-to-Install-Odoo-11-on-Ubuntu-16.04-with-Nginx-as-a-Reverse-Proxy.jpg\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/07\/How-to-Install-Odoo-11-on-Ubuntu-16.04-with-Nginx-as-a-Reverse-Proxy.jpg\",\"width\":742,\"height\":372,\"caption\":\"How to Install Odoo 11 on Ubuntu 16.04 with Nginx as a Reverse Proxy\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-odoo-11-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.rosehosting.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Odoo 11 on Ubuntu 16.04 with Nginx as a Reverse Proxy\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/\",\"name\":\"RoseHosting\",\"description\":\"Premium Linux Tutorials Since 2001\",\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\",\"name\":\"RoseHosting\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png\",\"width\":192,\"height\":192,\"caption\":\"RoseHosting\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/RoseHosting\",\"https:\/\/x.com\/rosehosting\",\"https:\/\/www.linkedin.com\/in\/rosehosting\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g\",\"caption\":\"Jeff Wilson\"},\"description\":\"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.\",\"sameAs\":[\"https:\/\/www.rosehosting.com\",\"https:\/\/www.facebook.com\/rosehosting.helpdesk\"],\"url\":\"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install Odoo 11 on Ubuntu 16.04 with Nginx as a Reverse Proxy - RoseHosting","description":"How to Install Odoo 11 on Ubuntu 16.04 with Nginx as a Reverse Proxy - RoseHosting","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.rosehosting.com\/blog\/how-to-install-odoo-11-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Odoo 11 on Ubuntu 16.04 with Nginx as a Reverse Proxy - RoseHosting","og_description":"How to Install Odoo 11 on Ubuntu 16.04 with Nginx as a Reverse Proxy - RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-odoo-11-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2018-07-26T09:18:07+00:00","article_modified_time":"2022-06-03T08:34:47+00:00","og_image":[{"width":742,"height":372,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/07\/How-to-Install-Odoo-11-on-Ubuntu-16.04-with-Nginx-as-a-Reverse-Proxy.jpg","type":"image\/jpeg"}],"author":"Jeff Wilson","twitter_card":"summary_large_image","twitter_creator":"@rosehosting","twitter_site":"@rosehosting","twitter_misc":{"Written by":"Jeff Wilson","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-odoo-11-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-odoo-11-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"How to Install Odoo 11 on Ubuntu 16.04 with Nginx as a Reverse Proxy","datePublished":"2018-07-26T09:18:07+00:00","dateModified":"2022-06-03T08:34:47+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-odoo-11-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/"},"wordCount":688,"commentCount":2,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-odoo-11-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/07\/How-to-Install-Odoo-11-on-Ubuntu-16.04-with-Nginx-as-a-Reverse-Proxy.jpg","keywords":["nginx","odoo","ubuntu"],"articleSection":["CMS, CRM, ERP","E-Commerce","Tutorials","Ubuntu"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-odoo-11-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-odoo-11-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/","url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-odoo-11-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/","name":"How to Install Odoo 11 on Ubuntu 16.04 with Nginx as a Reverse Proxy - RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-odoo-11-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-odoo-11-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/07\/How-to-Install-Odoo-11-on-Ubuntu-16.04-with-Nginx-as-a-Reverse-Proxy.jpg","datePublished":"2018-07-26T09:18:07+00:00","dateModified":"2022-06-03T08:34:47+00:00","description":"How to Install Odoo 11 on Ubuntu 16.04 with Nginx as a Reverse Proxy - RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-odoo-11-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-odoo-11-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-odoo-11-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/07\/How-to-Install-Odoo-11-on-Ubuntu-16.04-with-Nginx-as-a-Reverse-Proxy.jpg","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/07\/How-to-Install-Odoo-11-on-Ubuntu-16.04-with-Nginx-as-a-Reverse-Proxy.jpg","width":742,"height":372,"caption":"How to Install Odoo 11 on Ubuntu 16.04 with Nginx as a Reverse Proxy"},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-odoo-11-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Odoo 11 on Ubuntu 16.04 with Nginx as a Reverse Proxy"}]},{"@type":"WebSite","@id":"https:\/\/www.rosehosting.com\/blog\/#website","url":"https:\/\/www.rosehosting.com\/blog\/","name":"RoseHosting","description":"Premium Linux Tutorials Since 2001","publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.rosehosting.com\/blog\/#organization","name":"RoseHosting","url":"https:\/\/www.rosehosting.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","width":192,"height":192,"caption":"RoseHosting"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/RoseHosting","https:\/\/x.com\/rosehosting","https:\/\/www.linkedin.com\/in\/rosehosting\/"]},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g","caption":"Jeff Wilson"},"description":"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.","sameAs":["https:\/\/www.rosehosting.com","https:\/\/www.facebook.com\/rosehosting.helpdesk"],"url":"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/27618"}],"collection":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/comments?post=27618"}],"version-history":[{"count":1,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/27618\/revisions"}],"predecessor-version":[{"id":36465,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/27618\/revisions\/36465"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/27699"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=27618"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=27618"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=27618"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}