{"id":1153,"date":"2020-02-19T14:00:35","date_gmt":"2020-02-19T20:00:35","guid":{"rendered":"https:\/\/www.linuxcloudvps.com\/blog\/?p=1153"},"modified":"2020-02-19T14:00:35","modified_gmt":"2020-02-19T20:00:35","slug":"how-to-install-odoo-10-on-debian-9-with-nginx-as-a-reverse-proxy","status":"publish","type":"post","link":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-odoo-10-on-debian-9-with-nginx-as-a-reverse-proxy\/","title":{"rendered":"How to Install Odoo 10 on Debian 9 with Nginx as a Reverse Proxy"},"content":{"rendered":"<p>In this tutorial, we will guide you through the steps of installing Odoo 10 on Debian 9 using your domain name and without typing the port number in your web browser. We will also install the Nginx web server and configure it as a reverse proxy.<\/p>\n<p><img decoding=\"async\" class=\"alignright size-full wp-image-1158\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/02\/use-nginx-reverse-proxy-for-odoo-install-cloud-vps.jpg\" alt=\"\" width=\"155\" height=\"49\" \/>Odoo (formerly OpenERP) is a web-based open source business software including a number of business applications for Sales,\u00a0Website\/eCommerce, Project and Warehouse management, CRM, billing, accounting, Human Resources, Marketing and many more additional modules developed by the community. 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<p><!--more--><\/p>\n<h3>Requirements<\/h3>\n<ul>\n<li><a href=\"https:\/\/www.linuxcloudvps.com\/cloud-vps.html\" target=\"_blank\" rel=\"noopener noreferrer\">Debian 9 VPS<\/a>. We will use our LC VPS-2 hosting plan for the 2 gigabytes of RAM that we&#8217;ll need.<\/li>\n<li>SSH access with root privileges<\/li>\n<li>PostgreSQL server<\/li>\n<li>Python version 2.7<\/li>\n<li>Nginx web server<\/li>\n<\/ul>\n<h3>Step 1. Login via SSH and Update the System Packages<\/h3>\n<p>To connect to your server via SSH as user root, use the following command:<\/p>\n<pre>ssh root@&lt;span style=&quot;color: #ff0000;&quot;&gt;IP_Address&lt;\/span&gt; -p &lt;span style=&quot;color: #ff0000;&quot;&gt;Port_number&lt;\/span&gt;<\/pre>\n<p>You can change &#8220;root&#8221; to the username of any sudo-enabled account, as well as changing &#8220;<span style=\"color: #ff0000;\">IP_Address<\/span>&#8221; and &#8220;<span style=\"color: #ff0000;\">Port_number<\/span>&#8221; to the respective values for your server.<\/p>\n<p>Once you are logged in, make sure that your server is up-to-date by running the following commands:<\/p>\n<pre>apt update &amp;&amp; apt upgrade<\/pre>\n<h2>Step 2. Install PostgreSQL Server on Debian 9<\/h2>\n<p>The next step is to install the PostgreSQL database system on your server. This step is fairly simple &#8211; just run the following command:<\/p>\n<pre>apt install postgresql<\/pre>\n<p>It will install the PostgreSQL database server, client and other required tools.<\/p>\n<p>To check an verify that PostgreSQL server\/client are installed, you can use the following command:<\/p>\n<pre>psql --version<\/pre>\n<p>It will show you the current version of PostgreSQL you have installed on your server:<\/p>\n<pre># psql --version\r\npsql (PostgreSQL) 9.6.10<\/pre>\n<h2>Step 3. Add a Repository and Install Odoo<\/h2>\n<p>Odoo is not available in the official Debian 9 repository, so in order to install it, we will need to add the Odoo repository to the server. In order to do that, we need to run the following commands:<\/p>\n<pre>wget -O - https:\/\/nightly.odoo.com\/odoo.key &lt;span class=&quot;p&quot;&gt;|&lt;\/span&gt; apt-key add -\r\n&lt;span class=&quot;nb&quot;&gt;echo&lt;\/span&gt; &lt;span class=&quot;s2&quot;&gt;&quot;deb http:\/\/nightly.odoo.com\/10.0\/nightly\/deb\/ .\/&quot;&lt;\/span&gt; &amp;gt;&amp;gt; \/etc\/apt\/sources.list.d\/odoo.list<\/pre>\n<p>Update the list of available packages with:<\/p>\n<pre>apt update<\/pre>\n<p>And run the following command to install Odoo, along with Python and all required Python modules:<\/p>\n<pre>apt install odoo<\/pre>\n<p>After the installation is complete, you can run the following command to check the status of your Odoo service:<\/p>\n<pre>systemctl status odoo<\/pre>\n<p>You should get the following output:<\/p>\n<pre>\u25cf odoo.service - LSB: Start odoo daemon at boot time\r\n   Loaded: loaded (\/etc\/init.d\/odoo; bad; vendor preset: enabled)\r\n   Active: active (running) since \r\n     Docs: man:systemd-sysv-generator(8)\r\n   CGroup: \/system.slice\/odoo.service\r\n           \u2514\u250021410 \/usr\/bin\/python \/usr\/bin\/odoo --config \/etc\/odoo\/odoo.conf --logfile \/var\/log\/odoo\/odoo-server.log<\/pre>\n<p>You will also need to set a new master password. To do this you need to edit the Odoo configuration file with:<\/p>\n<pre>nano \/etc\/odoo\/odoo.conf<\/pre>\n<p>Uncomment the \u2018admin_passwrd\u2019 line, and change admin_password field with a strong password.<\/p>\n<pre>admin_passwd = &lt;span style=&quot;color: #ff0000;&quot;&gt;YOUR_STRONG_PASSWORD&lt;\/span&gt;<\/pre>\n<p>After you finish making the changes, save and exit the file, then restart your Odoo instance with the following command:<\/p>\n<pre>systemctl restart odoo<\/pre>\n<p>To access Odoo, you can now open your favorite web browser and navigate to <strong><code>http:\/\/<span style=\"color: #ff0000;\">your-server-IP-address<\/span>:8069<\/code><\/strong><\/p>\n<p><img decoding=\"async\" class=\"aligncenter size-full wp-image-1155\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/02\/Install-Odoo-10-on-Debian-9-with-Nginx-as-a-Reverse-Proxy-1024x462-1.jpg\" alt=\"\" width=\"1024\" height=\"462\" srcset=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/02\/Install-Odoo-10-on-Debian-9-with-Nginx-as-a-Reverse-Proxy-1024x462-1.jpg 1024w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/02\/Install-Odoo-10-on-Debian-9-with-Nginx-as-a-Reverse-Proxy-1024x462-1-470x212.jpg 470w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/02\/Install-Odoo-10-on-Debian-9-with-Nginx-as-a-Reverse-Proxy-1024x462-1-970x438.jpg 970w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/02\/Install-Odoo-10-on-Debian-9-with-Nginx-as-a-Reverse-Proxy-1024x462-1-768x347.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/p>\n<p>&nbsp;<\/p>\n<h2>Step 4. Setting up a Reverse Proxy with Nginx<\/h2>\n<p>To access it using your domain name and without needing to type the port number in your web browser, we need to configure Nginx as a reverse proxy.<\/p>\n<p>If you have apache installed, you can uninstall or disable it with the following command:<\/p>\n<pre>systemctl disable apache2\r\nsystemctl stop apache2<\/pre>\n<p>and then install Nginx using the following command:<\/p>\n<pre>apt install nginx<\/pre>\n<p>To enable the Nginx web server to start automatically upon server reboot, execute the following command:<\/p>\n<pre>systemctl enable nginx<\/pre>\n<p>Next, we need to create a Nginx configuration file:<\/p>\n<pre>nano \/etc\/nginx\/sites-available\/&lt;span style=&quot;color: #ff0000;&quot;&gt;domain.com&lt;\/span&gt;.conf<\/pre>\n<p>and enter the following content and save the file:<\/p>\n<pre>upstream odoo {\r\nserver 127.0.0.1:8069;\r\n}\r\n\r\nserver {\r\nlisten 80 default;\r\nserver_name &lt;span style=&quot;color: #ff0000;&quot;&gt;domain.com&lt;\/span&gt;;\r\n\r\naccess_log \/var\/log\/nginx\/&lt;span style=&quot;color: #ff0000;&quot;&gt;domain.com&lt;\/span&gt;.access.log;\r\nerror_log \/var\/log\/nginx\/&lt;span style=&quot;color: #ff0000;&quot;&gt;domain.com&lt;\/span&gt;.error.log;\r\n\r\nproxy_buffers 16 64k;\r\nproxy_buffer_size 128k;\r\n\r\nlocation \/ {\r\nproxy_pass http:\/\/&lt;span style=&quot;color: #ff0000;&quot;&gt;odoo&lt;\/span&gt;;\r\nproxy_next_upstream error timeout invalid_header http_500 http_502 http_503 http_504;\r\nproxy_redirect off;\r\n\r\nproxy_set_header Host $host;\r\nproxy_set_header X-Real-IP $remote_addr;\r\nproxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;\r\nproxy_set_header X-Forwarded-Proto https;\r\n}\r\n\r\nlocation ~* \/web\/static\/ {\r\nproxy_cache_valid 200 60m;\r\nproxy_buffering on;\r\nexpires 864000;\r\nproxy_pass http:\/\/&lt;span style=&quot;color: #ff0000;&quot;&gt;odoo&lt;\/span&gt;;\r\n}\r\n}<\/pre>\n<p>To enable the virtual server block we have just created, run the following command:<\/p>\n<pre>ln -s \/etc\/nginx\/sites-available\/&lt;span style=&quot;color: #ff0000;&quot;&gt;domain.com&lt;\/span&gt;.conf \/etc\/nginx\/sites-enabled\/&lt;span style=&quot;color: #ff0000;&quot;&gt;domain.com&lt;\/span&gt;.conf<\/pre>\n<p>Remember to replace any and all instances of <span style=\"color: #ff0000;\">domain.com<\/span> with your unique registered domain name.<\/p>\n<p>Check the Nginx configuration and if everything is okay, restart it.<\/p>\n<pre>nginx -t<\/pre>\n<pre>systemctl restart nginx<\/pre>\n<p>That\u2019s it! If you followed all the instructions properly, you can now access your Odoo 10 using your domain name at <strong>http:\/\/<span style=\"color: #ff0000;\">domain.com<\/span>. <\/strong>For more information about Odoo 10, its features and configuration, please check their official documentation.<strong><br \/>\n<\/strong><\/p>\n<hr \/>\n<p><img decoding=\"async\" class=\"alignleft size-full wp-image-1159\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/02\/managed-support-from-expert-admins-for-odoo-and-cloud-vps.jpg\" alt=\"\" width=\"155\" height=\"49\" \/>Of course, you don\u2019t have to know how to install Odoo 10 on Debian 9 with Nginx as a reverse proxy if you use of our <a href=\"https:\/\/www.linuxcloudvps.com\/cloud-vps.html\">Managed Cloud VPS<\/a>\u00a0services. You can simply ask our administrators to install Odoo 10 on Debian 9 for you. They\u2019re available 24\/7 and will be able to help you with the installation of Odoo 10 as well as anything else you may need.<\/p>\n<p><span style=\"color: #ff0000;\"><strong>PS.<\/strong><\/span> If you enjoyed reading this blog post on how to Install Odoo 10 on Debian 9 with Nginx as a reverse proxy, feel free to share it on social networks using the sharing shortcuts, or simply leave a comment. Thank you.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, we will guide you through the steps of installing Odoo 10 on Debian 9 using your domain name and without typing the port number in your web browser. We will also install the Nginx web server and configure it as a reverse proxy. Odoo (formerly OpenERP) is a web-based open source business &#8230; <a title=\"How to Install Odoo 10 on Debian 9 with Nginx as a Reverse Proxy\" class=\"read-more\" href=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-odoo-10-on-debian-9-with-nginx-as-a-reverse-proxy\/\" aria-label=\"More on How to Install Odoo 10 on Debian 9 with Nginx as a Reverse Proxy\">Read more<\/a><\/p>\n","protected":false},"author":2,"featured_media":1157,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-1153","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install Odoo 10 on Debian 9 with Nginx as a Reverse Proxy | LinuxCloudVPS Blog<\/title>\n<meta name=\"description\" content=\"In this tutorial, we will guide you through the steps of installing Odoo 10 on Debian 9 using your domain name and without typing the port number in your\" \/>\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.linuxcloudvps.com\/blog\/how-to-install-odoo-10-on-debian-9-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 10 on Debian 9 with Nginx as a Reverse Proxy | LinuxCloudVPS Blog\" \/>\n<meta property=\"og:description\" content=\"In this tutorial, we will guide you through the steps of installing Odoo 10 on Debian 9 using your domain name and without typing the port number in your\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-odoo-10-on-debian-9-with-nginx-as-a-reverse-proxy\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxCloudVPS Blog\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/www.facebook.com\/LinuxCloudVPS\" \/>\n<meta property=\"article:published_time\" content=\"2020-02-19T20:00:35+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/02\/how-to-install-odoo-on-debian9-with-nginx-as-a-reverse-proxy.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"750\" \/>\n\t<meta property=\"og:image:height\" content=\"360\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@LinuxCloudVPS\" \/>\n<meta name=\"twitter:site\" content=\"@LinuxCloudVPS\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-odoo-10-on-debian-9-with-nginx-as-a-reverse-proxy\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-odoo-10-on-debian-9-with-nginx-as-a-reverse-proxy\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\"},\"headline\":\"How to Install Odoo 10 on Debian 9 with Nginx as a Reverse Proxy\",\"datePublished\":\"2020-02-19T20:00:35+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-odoo-10-on-debian-9-with-nginx-as-a-reverse-proxy\\\/\"},\"wordCount\":734,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-odoo-10-on-debian-9-with-nginx-as-a-reverse-proxy\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/how-to-install-odoo-on-debian9-with-nginx-as-a-reverse-proxy.jpg\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-odoo-10-on-debian-9-with-nginx-as-a-reverse-proxy\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-odoo-10-on-debian-9-with-nginx-as-a-reverse-proxy\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-odoo-10-on-debian-9-with-nginx-as-a-reverse-proxy\\\/\",\"name\":\"How to Install Odoo 10 on Debian 9 with Nginx as a Reverse Proxy | LinuxCloudVPS Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-odoo-10-on-debian-9-with-nginx-as-a-reverse-proxy\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-odoo-10-on-debian-9-with-nginx-as-a-reverse-proxy\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/how-to-install-odoo-on-debian9-with-nginx-as-a-reverse-proxy.jpg\",\"datePublished\":\"2020-02-19T20:00:35+00:00\",\"description\":\"In this tutorial, we will guide you through the steps of installing Odoo 10 on Debian 9 using your domain name and without typing the port number in your\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-odoo-10-on-debian-9-with-nginx-as-a-reverse-proxy\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-odoo-10-on-debian-9-with-nginx-as-a-reverse-proxy\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-odoo-10-on-debian-9-with-nginx-as-a-reverse-proxy\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/how-to-install-odoo-on-debian9-with-nginx-as-a-reverse-proxy.jpg\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/how-to-install-odoo-on-debian9-with-nginx-as-a-reverse-proxy.jpg\",\"width\":750,\"height\":360},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-odoo-10-on-debian-9-with-nginx-as-a-reverse-proxy\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Odoo 10 on Debian 9 with Nginx as a Reverse Proxy\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\",\"name\":\"LinuxCloudVPS\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\",\"name\":\"LinuxCloudVPS\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/logo.png\",\"width\":217,\"height\":25,\"caption\":\"LinuxCloudVPS\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"http:\\\/\\\/www.facebook.com\\\/LinuxCloudVPS\",\"https:\\\/\\\/x.com\\\/LinuxCloudVPS\",\"http:\\\/\\\/www.linkedin.com\\\/company\\\/linuxcloudvps-com\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/www.linuxcloudvps.com\\\/\"],\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install Odoo 10 on Debian 9 with Nginx as a Reverse Proxy | LinuxCloudVPS Blog","description":"In this tutorial, we will guide you through the steps of installing Odoo 10 on Debian 9 using your domain name and without typing the port number in your","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.linuxcloudvps.com\/blog\/how-to-install-odoo-10-on-debian-9-with-nginx-as-a-reverse-proxy\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Odoo 10 on Debian 9 with Nginx as a Reverse Proxy | LinuxCloudVPS Blog","og_description":"In this tutorial, we will guide you through the steps of installing Odoo 10 on Debian 9 using your domain name and without typing the port number in your","og_url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-odoo-10-on-debian-9-with-nginx-as-a-reverse-proxy\/","og_site_name":"LinuxCloudVPS Blog","article_publisher":"http:\/\/www.facebook.com\/LinuxCloudVPS","article_published_time":"2020-02-19T20:00:35+00:00","og_image":[{"width":750,"height":360,"url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/02\/how-to-install-odoo-on-debian9-with-nginx-as-a-reverse-proxy.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@LinuxCloudVPS","twitter_site":"@LinuxCloudVPS","twitter_misc":{"Written by":"admin","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-odoo-10-on-debian-9-with-nginx-as-a-reverse-proxy\/#article","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-odoo-10-on-debian-9-with-nginx-as-a-reverse-proxy\/"},"author":{"name":"admin","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a"},"headline":"How to Install Odoo 10 on Debian 9 with Nginx as a Reverse Proxy","datePublished":"2020-02-19T20:00:35+00:00","mainEntityOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-odoo-10-on-debian-9-with-nginx-as-a-reverse-proxy\/"},"wordCount":734,"commentCount":0,"publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-odoo-10-on-debian-9-with-nginx-as-a-reverse-proxy\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/02\/how-to-install-odoo-on-debian9-with-nginx-as-a-reverse-proxy.jpg","inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-odoo-10-on-debian-9-with-nginx-as-a-reverse-proxy\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-odoo-10-on-debian-9-with-nginx-as-a-reverse-proxy\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-odoo-10-on-debian-9-with-nginx-as-a-reverse-proxy\/","name":"How to Install Odoo 10 on Debian 9 with Nginx as a Reverse Proxy | LinuxCloudVPS Blog","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-odoo-10-on-debian-9-with-nginx-as-a-reverse-proxy\/#primaryimage"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-odoo-10-on-debian-9-with-nginx-as-a-reverse-proxy\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/02\/how-to-install-odoo-on-debian9-with-nginx-as-a-reverse-proxy.jpg","datePublished":"2020-02-19T20:00:35+00:00","description":"In this tutorial, we will guide you through the steps of installing Odoo 10 on Debian 9 using your domain name and without typing the port number in your","breadcrumb":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-odoo-10-on-debian-9-with-nginx-as-a-reverse-proxy\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-odoo-10-on-debian-9-with-nginx-as-a-reverse-proxy\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-odoo-10-on-debian-9-with-nginx-as-a-reverse-proxy\/#primaryimage","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/02\/how-to-install-odoo-on-debian9-with-nginx-as-a-reverse-proxy.jpg","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/02\/how-to-install-odoo-on-debian9-with-nginx-as-a-reverse-proxy.jpg","width":750,"height":360},{"@type":"BreadcrumbList","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-odoo-10-on-debian-9-with-nginx-as-a-reverse-proxy\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.linuxcloudvps.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Odoo 10 on Debian 9 with Nginx as a Reverse Proxy"}]},{"@type":"WebSite","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website","url":"https:\/\/www.linuxcloudvps.com\/blog\/","name":"LinuxCloudVPS","description":"","publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.linuxcloudvps.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization","name":"LinuxCloudVPS","url":"https:\/\/www.linuxcloudvps.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","width":217,"height":25,"caption":"LinuxCloudVPS"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["http:\/\/www.facebook.com\/LinuxCloudVPS","https:\/\/x.com\/LinuxCloudVPS","http:\/\/www.linkedin.com\/company\/linuxcloudvps-com"]},{"@type":"Person","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","caption":"admin"},"sameAs":["http:\/\/www.linuxcloudvps.com\/"],"url":"https:\/\/www.linuxcloudvps.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1153","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/comments?post=1153"}],"version-history":[{"count":4,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1153\/revisions"}],"predecessor-version":[{"id":1168,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1153\/revisions\/1168"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media\/1157"}],"wp:attachment":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media?parent=1153"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/categories?post=1153"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/tags?post=1153"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}