{"id":15324,"date":"2024-11-29T10:27:14","date_gmt":"2024-11-29T10:27:14","guid":{"rendered":"https:\/\/cloudkul.com\/blog\/?p=15324"},"modified":"2024-11-29T10:27:17","modified_gmt":"2024-11-29T10:27:17","slug":"how-to-set-up-the-nginx-server-for-the-odoo-application","status":"publish","type":"post","link":"https:\/\/cloudkul.com\/blog\/how-to-set-up-the-nginx-server-for-the-odoo-application\/","title":{"rendered":"How to set up the Nginx server for the Odoo application."},"content":{"rendered":"\n<p>Once your Odoo is configured and running on the IP with port then proceed with Nginx configuration. Confused?? How to<a href=\"https:\/\/cloudkul.com\/blog\/how-to-setup-odoo-17-on-aws\/\"> install Odoo<\/a>? Click on this link to explore and understand.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Nginx<\/h2>\n\n\n\n<p>A high-performance web server called <a href=\"https:\/\/cloudkul.com\/features\/nginx-integration\/\">NGINX web server <\/a>was created to meet the growing demands of the modern web. <\/p>\n\n\n\n<p>High performance, lots of parallelisms, and sparse resource utilization are its main priorities. NGINX is a reverse proxy server at its core, despite being primarily recognized as a web server.<\/p>\n\n\n\n<p>But, there are other web servers available besides NGINX. The 1995-first-released Apache HTTP Server (httpd) is one of its main rivals. <\/p>\n\n\n\n<p>Although <a href=\"https:\/\/webkul.com\/blog\/introduction-of-the-apache-server\/\">Apache HTTP Server <\/a>is more flexible, server administrators frequently favor NGINX for the following two reasons:<\/p>\n\n\n\n<ul>\n<li>It can manage more concurrent queries.<\/li>\n\n\n\n<li>It uses fewer resources and delivers static content more quickly.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1: Install and configure Nginx with reverse proxy.<\/h2>\n\n\n\n<p>First, use the command below to install Nginx on the server.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt-get install nginx -y<\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/02\/nginx_install.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"337\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/02\/nginx_install-1024x337.png\" alt=\"nginx\" class=\"wp-image-14307\"\/><\/a><\/figure>\n\n\n\n<p>Then, Create\/Edit the domain server block. <\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo vim \/etc\/nginx\/sites-enabled\/yourdomain.com.conf<\/pre>\n\n\n\n<p>Copy the configuration from below, paste it into your file, and make the necessary adjustments. Below mentioned configuration will work for the <strong>Odoo version &gt;= 16.0<\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">#odoo server\nupstream odoo {\n  server 127.0.0.1:8069;\n}\nupstream odoochat {\n  server 127.0.0.1:8072;\n}\nmap $http_upgrade $connection_upgrade {\n  default upgrade;\n  ''      close;\n}\n\n#To redirect non-existing domain to your custom page \n#Note - If you do not have any specific location to redirect then, remove the location block and just add the \"return 400\".\nserver {\n listen 80 default_server;\n server_name _;\n location \/ {\n        rewrite ^(.*)$ https:\/\/domain_to_be_redirected.com$request_uri permanent;\n    }\n}\n\nserver {\n listen 443 default_server;\n server_name _;\n ssl_certificate  \/path\/to\/ssl\/cert;\n ssl_certificate_key \/path\/to\/ssl\/cert;\n location \/ {\n        rewrite ^(.*)$ https:\/\/domain_to_be_redirected.com$request_uri permanent;\n    }\n}\n\n# http -> https\nserver {\n  listen 80;\n  server_name yourdomain.com;\n  rewrite ^(.*) https:\/\/$host$1 permanent;\n}\n\nserver {\n  listen 443 ssl;\n  server_name yourdomain.com;\n  proxy_read_timeout 720s;\n  proxy_connect_timeout 720s;\n  proxy_send_timeout 720s;\n\n  # SSL parameters\n  ssl_certificate \/etc\/ssl\/nginx\/server.crt;\n  ssl_certificate_key \/etc\/ssl\/nginx\/server.key;\n  ssl_session_timeout 30m;\n  ssl_protocols TLSv1.2;\n  ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384;\n  ssl_prefer_server_ciphers off;\n\n  # log\n  access_log \/var\/log\/nginx\/odoo.access.log;\n  error_log \/var\/log\/nginx\/odoo.error.log;\n\n  # Redirect websocket requests to odoo gevent port\n  location \/websocket {\n    proxy_pass http:\/\/odoochat;\n    proxy_set_header Upgrade $http_upgrade;\n    proxy_set_header Connection $connection_upgrade;\n    proxy_set_header X-Forwarded-Host $host;\n    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;\n    proxy_set_header X-Forwarded-Proto $scheme;\n    proxy_set_header X-Real-IP $remote_addr;\n  }\n\n  # Redirect requests to odoo backend server\n  location \/ {\n    # Add Headers for odoo proxy mode\n    proxy_set_header X-Forwarded-Host $host;\n    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;\n    proxy_set_header X-Forwarded-Proto $scheme;\n    proxy_set_header X-Real-IP $remote_addr;\n    proxy_redirect off;\n    proxy_pass http:\/\/odoo;\n  }\n\n  # common gzip\n  gzip_types text\/css text\/scss text\/plain text\/xml application\/xml application\/json application\/javascript;\n  gzip on;\n}\n<\/pre>\n\n\n\n<p>If you have installed the <strong>Odoov &lt;= 15.0<\/strong>, Then use the below-mentioned configuration file.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">#odoo server\nupstream odoo {\n  server 127.0.0.1:8069;\n}\nupstream odoochat {\n  server 127.0.0.1:8072;\n}\n\n#To redirect non-existing domain to your custom page\n#Note - If you do not have any specific location to redirect then, remove the location block and just add the \"return 400\".\nserver {\n listen 80 default_server;\n server_name _;\n location \/ {\n        rewrite ^(.*)$ https:\/\/domain_to_be_redirected.com$request_uri permanent;\n    }\n}\n\nserver {\n listen 443 default_server;\n server_name _;\n ssl_certificate  \/path\/to\/ssl\/cert;\n ssl_certificate_key \/path\/to\/ssl\/cert;\n location \/ {\n        rewrite ^(.*)$ https:\/\/domain_to_be_redirected.com$request_uri permanent;\n    }\n}\n\n# http -> https\nserver {\n  listen 80;\n  server_name yourdomain.com;\n  rewrite ^(.*) https:\/\/$host$1 permanent;\n}\n\nserver {\n  listen 443 ssl;\n  server_name yourdomain.com;\n  proxy_read_timeout 720s;\n  proxy_connect_timeout 720s;\n  proxy_send_timeout 720s;\n\n  # Add Headers for odoo proxy mode\n  proxy_set_header X-Forwarded-Host $host;\n  proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;\n  proxy_set_header X-Forwarded-Proto $scheme;\n  proxy_set_header X-Real-IP $remote_addr;\n\n  # SSL parameters\n  ssl_certificate \/etc\/ssl\/nginx\/server.crt;\n  ssl_certificate_key \/etc\/ssl\/nginx\/server.key;\n  ssl_session_timeout 30m;\n  ssl_protocols TLSv1.2;\n  ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384;\n  ssl_prefer_server_ciphers off;\n\n  # log\n  access_log \/var\/log\/nginx\/odoo.access.log;\n  error_log \/var\/log\/nginx\/odoo.error.log;\n\n  # Redirect longpoll requests to odoo longpolling port\n  location \/longpolling {\n    proxy_pass http:\/\/odoochat;\n  }\n\n  # Redirect requests to odoo backend server\n  location \/ {\n    proxy_redirect off;\n    proxy_pass http:\/\/odoo;\n  }\n\n  # common gzip\n  gzip_types text\/css text\/scss text\/plain text\/xml application\/xml application\/json application\/javascript;\n  gzip on;\n}<\/pre>\n\n\n\n<p>Once you&#8217;re done with the Nginx configuration, test the Nginx configuration &amp; restart the Nginx service with the blow mentioned command.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">nginx -t\nsudo systemctl restart nginx<\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/02\/nginx_retart.png\"><img loading=\"lazy\" decoding=\"async\" width=\"825\" height=\"133\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/02\/nginx_retart.png\" alt=\"step 1\" class=\"wp-image-14325\"\/><\/a><\/figure>\n\n\n\n<p>For configuring the <a href=\"https:\/\/cloudkul.com\/blog\/how-to-get-free-https-on-your-website-using-lets-encrypt-ssl\/\">Free Self-signed certificates <\/a>from let&#8217;s encrypt, Please click on this link.<\/p>\n\n\n\n<p>Restart the Odoo server as well as the PostgreSQL service.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo service postgresql restart\nsudo \/etc\/init.d\/odoo16-server restart<\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/02\/nginx_postgres_restart-1.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"169\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/02\/nginx_postgres_restart-1-1024x169.png\" alt=\"ssl\" class=\"wp-image-14328\"\/><\/a><\/figure>\n\n\n\n<p>Once both services are up, hit the domain in the browser.<\/p>\n\n\n\n<p><strong>Note &#8211; Do not forget to open the 80 &amp; 443 ports from the AWS console in Security Group.<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">https:\/\/yourdomain.com<\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/02\/odoo_main.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"555\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/02\/odoo_main-1024x555.png\" alt=\"odoo\" class=\"wp-image-14334\"\/><\/a><\/figure>\n\n\n\n<p>After login, you will get the attached page.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/02\/Screenshot-from-2023-02-08-13-39-31.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/02\/Screenshot-from-2023-02-08-13-39-31-1024x576.png\" alt=\"login\" class=\"wp-image-14350\"\/><\/a><\/figure>\n\n\n\n<p>If you find this blog helpful, Please give us your valuable time to provide us feedback for the same.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Need Support?<\/h2>\n\n\n\n<p>Thank You for reading this Blog!<\/p>\n\n\n\n<p>For further more interesting blogs, keep in touch with us. If you need any kind of support, simply raise a ticket at&nbsp;<strong><a href=\"https:\/\/webkul.uvdesk.com\/en\/\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/webkul.uvdesk.com\/en\/<\/a>.<\/strong><\/p>\n\n\n\n<p>You may also visit our Odoo development services and quality\u00a0<strong><a href=\"https:\/\/webkul.com\/odoo-development\/\">Odoo Extensions<\/a><\/strong>.<\/p>\n\n\n\n<p><strong>For further help or queries, please\u00a0<a href=\"https:\/\/cloudkul.com\/contact\/\">contact<\/a>\u00a0us or raise a\u00a0<a href=\"https:\/\/webkul.uvdesk.com\/en\/customer\/create-ticket\/\">ticket<\/a>.<\/strong><\/p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"https:\/\/cloudkul.com\/blog\/?s=odoo16\" target=\"_blank\" rel=\"noreferrer noopener\">Install Odoo16 on Ubuntu<\/a><\/div>\n\n\n\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"https:\/\/cloudkul.com\/blog\/?s=odoo16\" target=\"_blank\" rel=\"noreferrer noopener\">odoo16<\/a><\/div>\n\n\n\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"https:\/\/webkul.com\/blog\/tag\/odoo\/\" target=\"_blank\" rel=\"noreferrer noopener\">Odoo<\/a><\/div>\n\n\n\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"https:\/\/webkul.com\/blog\/tag\/erp\/\" target=\"_blank\" rel=\"noreferrer noopener\">Erp<\/a><\/div>\n\n\n\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"https:\/\/webkul.com\/blog\/tag\/crm\/\" target=\"_blank\" rel=\"noreferrer noopener\">Crm<\/a><\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Once your Odoo is configured and running on the IP with port then proceed with <a class=\"text-primary\" title=\"read more\" href=\"https:\/\/cloudkul.com\/blog\/how-to-set-up-the-nginx-server-for-the-odoo-application\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":42,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_mi_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[32,2,86,443,444],"tags":[178,90,66,211,556,43],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to set up the Nginx server for the Odoo application. - Cloudkul<\/title>\n<meta name=\"description\" content=\"Cloudkul How to set up the Nginx server for the Odoo application. AWS -\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/cloudkul.com\/blog\/how-to-set-up-the-nginx-server-for-the-odoo-application\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to set up the Nginx server for the Odoo application. - Cloudkul\" \/>\n<meta property=\"og:description\" content=\"Cloudkul How to set up the Nginx server for the Odoo application. AWS -\" \/>\n<meta property=\"og:url\" content=\"https:\/\/cloudkul.com\/blog\/how-to-set-up-the-nginx-server-for-the-odoo-application\/\" \/>\n<meta property=\"og:site_name\" content=\"Cloudkul\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-29T10:27:14+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-29T10:27:17+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/02\/nginx_install-1024x337.png\" \/>\n<meta name=\"author\" content=\"kshitiz pathak\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/cloudkul.com\/blog\/how-to-set-up-the-nginx-server-for-the-odoo-application\/\",\"url\":\"https:\/\/cloudkul.com\/blog\/how-to-set-up-the-nginx-server-for-the-odoo-application\/\",\"name\":\"How to set up the Nginx server for the Odoo application. - Cloudkul\",\"isPartOf\":{\"@id\":\"https:\/\/cloudkul.com\/blog\/#website\"},\"datePublished\":\"2024-11-29T10:27:14+00:00\",\"dateModified\":\"2024-11-29T10:27:17+00:00\",\"author\":{\"@id\":\"https:\/\/cloudkul.com\/blog\/#\/schema\/person\/b89f1d815be925560497bfa6856c023f\"},\"description\":\"Cloudkul How to set up the Nginx server for the Odoo application. AWS -\",\"breadcrumb\":{\"@id\":\"https:\/\/cloudkul.com\/blog\/how-to-set-up-the-nginx-server-for-the-odoo-application\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/cloudkul.com\/blog\/how-to-set-up-the-nginx-server-for-the-odoo-application\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/cloudkul.com\/blog\/how-to-set-up-the-nginx-server-for-the-odoo-application\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/cloudkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to set up the Nginx server for the Odoo application.\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/cloudkul.com\/blog\/#website\",\"url\":\"https:\/\/cloudkul.com\/blog\/\",\"name\":\"Cloudkul\",\"description\":\"Host your eCommerce Store on AWS with Optimized Performance\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/cloudkul.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/cloudkul.com\/blog\/#\/schema\/person\/b89f1d815be925560497bfa6856c023f\",\"name\":\"kshitiz pathak\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cloudkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/25b42f20ad828edde55592fd63ff894d?s=96&d=https%3A%2F%2Fs.gravatar.com%2Favatar%2F6148c37469011bc2f8e491ca8f5de495%3Fs%3D80&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/25b42f20ad828edde55592fd63ff894d?s=96&d=https%3A%2F%2Fs.gravatar.com%2Favatar%2F6148c37469011bc2f8e491ca8f5de495%3Fs%3D80&r=g\",\"caption\":\"kshitiz pathak\"},\"url\":\"https:\/\/cloudkul.com\/blog\/author\/kshitizpathak-cloud\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to set up the Nginx server for the Odoo application. - Cloudkul","description":"Cloudkul How to set up the Nginx server for the Odoo application. AWS -","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:\/\/cloudkul.com\/blog\/how-to-set-up-the-nginx-server-for-the-odoo-application\/","og_locale":"en_US","og_type":"article","og_title":"How to set up the Nginx server for the Odoo application. - Cloudkul","og_description":"Cloudkul How to set up the Nginx server for the Odoo application. AWS -","og_url":"https:\/\/cloudkul.com\/blog\/how-to-set-up-the-nginx-server-for-the-odoo-application\/","og_site_name":"Cloudkul","article_published_time":"2024-11-29T10:27:14+00:00","article_modified_time":"2024-11-29T10:27:17+00:00","og_image":[{"url":"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/02\/nginx_install-1024x337.png"}],"author":"kshitiz pathak","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/cloudkul.com\/blog\/how-to-set-up-the-nginx-server-for-the-odoo-application\/","url":"https:\/\/cloudkul.com\/blog\/how-to-set-up-the-nginx-server-for-the-odoo-application\/","name":"How to set up the Nginx server for the Odoo application. - Cloudkul","isPartOf":{"@id":"https:\/\/cloudkul.com\/blog\/#website"},"datePublished":"2024-11-29T10:27:14+00:00","dateModified":"2024-11-29T10:27:17+00:00","author":{"@id":"https:\/\/cloudkul.com\/blog\/#\/schema\/person\/b89f1d815be925560497bfa6856c023f"},"description":"Cloudkul How to set up the Nginx server for the Odoo application. AWS -","breadcrumb":{"@id":"https:\/\/cloudkul.com\/blog\/how-to-set-up-the-nginx-server-for-the-odoo-application\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cloudkul.com\/blog\/how-to-set-up-the-nginx-server-for-the-odoo-application\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/cloudkul.com\/blog\/how-to-set-up-the-nginx-server-for-the-odoo-application\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cloudkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to set up the Nginx server for the Odoo application."}]},{"@type":"WebSite","@id":"https:\/\/cloudkul.com\/blog\/#website","url":"https:\/\/cloudkul.com\/blog\/","name":"Cloudkul","description":"Host your eCommerce Store on AWS with Optimized Performance","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/cloudkul.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/cloudkul.com\/blog\/#\/schema\/person\/b89f1d815be925560497bfa6856c023f","name":"kshitiz pathak","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cloudkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/25b42f20ad828edde55592fd63ff894d?s=96&d=https%3A%2F%2Fs.gravatar.com%2Favatar%2F6148c37469011bc2f8e491ca8f5de495%3Fs%3D80&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/25b42f20ad828edde55592fd63ff894d?s=96&d=https%3A%2F%2Fs.gravatar.com%2Favatar%2F6148c37469011bc2f8e491ca8f5de495%3Fs%3D80&r=g","caption":"kshitiz pathak"},"url":"https:\/\/cloudkul.com\/blog\/author\/kshitizpathak-cloud\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/posts\/15324"}],"collection":[{"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/users\/42"}],"replies":[{"embeddable":true,"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/comments?post=15324"}],"version-history":[{"count":24,"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/posts\/15324\/revisions"}],"predecessor-version":[{"id":18714,"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/posts\/15324\/revisions\/18714"}],"wp:attachment":[{"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/media?parent=15324"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/categories?post=15324"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/tags?post=15324"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}