{"id":4972,"date":"2024-01-09T12:25:02","date_gmt":"2024-01-09T06:55:02","guid":{"rendered":"https:\/\/www.host.co.in\/kb\/?p=4972"},"modified":"2026-02-09T13:23:49","modified_gmt":"2026-02-09T07:53:49","slug":"how-do-i-setup-nginx-as-a-reverse-proxy-in-plesk","status":"publish","type":"post","link":"https:\/\/www.host.co.in\/kb\/how-do-i-setup-nginx-as-a-reverse-proxy-in-plesk\/","title":{"rendered":"How Do I Setup Nginx as a Reverse Proxy in Plesk?"},"content":{"rendered":"\r\n<p class=\"wp-block-paragraph\">Setting up Nginx as a reverse proxy in Plesk involves several steps, and in this guide, we&#8217;ll walk you through the process.<\/p>\r\n\r\n\r\n\r\n<h2>Understanding Reverse Proxy:<\/h2>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">A reverse proxy acts as an intermediary between internal applications and external clients. It directs client requests to the appropriate backend Linux VPS server, ensuring proper network traffic flow. Nginx, a free and open-source reverse proxy, also serves as an IMAP\/POP3 proxy, enhancing performance by handling static content and forwarding dynamic content requests to the Apache server.<\/p>\r\n\r\n\r\n\r\n<h2>Reasons for Using a Reverse Proxy:<\/h2>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">There are several advantages to implementing a reverse proxy:<\/p>\r\n\r\n\r\n\r\n<ol class=\"wp-block-list\">\r\n<li>Balancing the load between multiple servers for improved performance.<\/li>\r\n\r\n\r\n\r\n<li>Providing a single point of contact for clients, facilitating logging and reporting across multiple servers.<\/li>\r\n\r\n\r\n\r\n<li>Enhancing privacy.<\/li>\r\n<\/ol>\r\n\r\n\r\n\r\n<h2>Why Choose Nginx:<\/h2>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">Nginx is recommended for various reasons:<\/p>\r\n\r\n\r\n\r\n<ol class=\"wp-block-list\">\r\n<li>Improved security.<\/li>\r\n\r\n\r\n\r\n<li>Enhanced performance and load balancing between servers.<\/li>\r\n\r\n\r\n\r\n<li>Simplified tracking and auditing.<\/li>\r\n\r\n\r\n\r\n<li>Utilizing TLS for encrypting the connection between the client and the reverse proxy.<\/li>\r\n<\/ol>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">Setting up NGINX Reverse Proxy on Plesk Control Panel:<\/p>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\"><strong><em>Step 1:<\/em>\u00a0Log in to the Plesk account as the root user.<\/strong><\/p>\r\n\r\n\r\n\r\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/www.host.co.in\/kb\/wp-content\/uploads\/2024\/01\/image-5.png\"><img loading=\"lazy\" decoding=\"async\" width=\"294\" height=\"444\" class=\"wp-image-4973\" src=\"https:\/\/www.host.co.in\/kb\/wp-content\/uploads\/2024\/01\/image-5.png\" alt=\"Plesk\r\n\" srcset=\"https:\/\/www.host.co.in\/kb\/wp-content\/uploads\/2024\/01\/image-5.png 294w, https:\/\/www.host.co.in\/kb\/wp-content\/uploads\/2024\/01\/image-5-199x300.png 199w\" sizes=\"auto, (max-width: 294px) 100vw, 294px\" \/><\/a><\/figure>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\"><strong><em>Step 2:<\/em>\u00a0Navigate to &#8220;Tools &amp; Settings,&#8221; click on &#8220;Plesk,&#8221; and choose &#8220;Restricted Mode Settings.&#8221;<\/strong><\/p>\r\n\r\n\r\n\r\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/www.host.co.in\/kb\/wp-content\/uploads\/2024\/01\/image-6.png\"><img loading=\"lazy\" decoding=\"async\" width=\"237\" height=\"183\" class=\"wp-image-4974\" src=\"https:\/\/www.host.co.in\/kb\/wp-content\/uploads\/2024\/01\/image-6.png\" alt=\"restricted mode settings\r\n\" \/><\/a><\/figure>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\"><strong><em>Step 3:<\/em>\u00a0In the webserver tab, scroll down to find the nginx configuration.<\/strong><\/p>\r\n\r\n\r\n\r\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/www.host.co.in\/kb\/wp-content\/uploads\/2024\/01\/image-7.png\"><img loading=\"lazy\" decoding=\"async\" width=\"615\" height=\"395\" class=\"wp-image-4975\" src=\"https:\/\/www.host.co.in\/kb\/wp-content\/uploads\/2024\/01\/image-7.png\" alt=\"nginx settings\r\n\" srcset=\"https:\/\/www.host.co.in\/kb\/wp-content\/uploads\/2024\/01\/image-7.png 615w, https:\/\/www.host.co.in\/kb\/wp-content\/uploads\/2024\/01\/image-7-300x193.png 300w\" sizes=\"auto, (max-width: 615px) 100vw, 615px\" \/><\/a><\/figure>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\"><strong><em>Step 4:<\/em>\u00a0Deselect &#8220;proxy mode&#8221; and add necessary information to &#8220;Additional Nginx Directives&#8221; before clicking &#8220;Apply.&#8221; Modify the Server IP in the first line and the server name in the final line.<\/strong><\/p>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\"><code>location \/ {<\/code><br \/><code>proxy_pass http:\/\/server_IP:3000;<\/code><br \/><code>proxy_redirect off;<\/code><br \/><code>proxy_set_header Host $host;<\/code><br \/><code>proxy_set_header X-Real-IP $remote_addr;<\/code><br \/><code>proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;<\/code><br \/><code>proxy_set_header X-Forwarded-Host $server_name;<\/code><br \/><code>}<\/code><\/p>\r\n\r\n\r\n\r\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/www.host.co.in\/kb\/wp-content\/uploads\/2024\/01\/image-8.png\"><img loading=\"lazy\" decoding=\"async\" width=\"407\" height=\"139\" class=\"wp-image-4976\" src=\"https:\/\/www.host.co.in\/kb\/wp-content\/uploads\/2024\/01\/image-8.png\" alt=\"nginx settings\r\n\" srcset=\"https:\/\/www.host.co.in\/kb\/wp-content\/uploads\/2024\/01\/image-8.png 407w, https:\/\/www.host.co.in\/kb\/wp-content\/uploads\/2024\/01\/image-8-300x102.png 300w\" sizes=\"auto, (max-width: 407px) 100vw, 407px\" \/><\/a><\/figure>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">extended nginx directives<\/p>\r\n\r\n\r\n\r\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/www.host.co.in\/kb\/wp-content\/uploads\/2024\/01\/image-9.png\"><img loading=\"lazy\" decoding=\"async\" width=\"637\" height=\"321\" class=\"wp-image-4977\" src=\"https:\/\/www.host.co.in\/kb\/wp-content\/uploads\/2024\/01\/image-9.png\" alt=\"additional nginx directives\" srcset=\"https:\/\/www.host.co.in\/kb\/wp-content\/uploads\/2024\/01\/image-9.png 637w, https:\/\/www.host.co.in\/kb\/wp-content\/uploads\/2024\/01\/image-9-300x151.png 300w\" sizes=\"auto, (max-width: 637px) 100vw, 637px\" \/><\/a><\/figure>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">If you encounter any difficulties during this process, feel free to contact the <a title=\"\" href=\"https:\/\/www.host.co.in\/\">host.co.in<\/a> Team for 24&#215;7 proactive support. We trust that this guide provides a clear understanding of setting up Nginx as a reverse proxy in Plesk.<\/p>\r\n","protected":false},"excerpt":{"rendered":"<p>Setting up Nginx as a reverse proxy in Plesk involves several steps, and in this guide, we&#8217;ll walk you through the process. Understanding Reverse Proxy: A reverse proxy acts as an intermediary between internal applications and external clients. It directs client requests to the appropriate backend Linux VPS server, ensuring proper network traffic flow. Nginx, [&hellip;]<\/p>\n","protected":false},"author":26,"featured_media":6290,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[641],"class_list":["post-4972","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-dedicated-web-hosting","tag-nginx"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.1.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Setting up Nginx as a reverse proxy in Plesk involves several steps, and in this guide, we&#039;ll walk you through the process. Understanding Reverse Proxy: A reverse proxy acts as an intermediary between internal applications and external clients. It directs client requests to the appropriate backend Linux VPS server, ensuring proper network traffic flow. Nginx,\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Sarang Khedkar\"\/>\n\t<meta name=\"keywords\" content=\"nginx,dedicated web hosting\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.host.co.in\/kb\/how-do-i-setup-nginx-as-a-reverse-proxy-in-plesk\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.1.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Knowledgebase | India&#039;s Top Web Hosting Company\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"How Do I Setup Nginx as a Reverse Proxy in Plesk?\" \/>\n\t\t<meta property=\"og:description\" content=\"Setting up Nginx as a reverse proxy in Plesk involves several steps, and in this guide, we&#039;ll walk you through the process. Understanding Reverse Proxy: A reverse proxy acts as an intermediary between internal applications and external clients. It directs client requests to the appropriate backend Linux VPS server, ensuring proper network traffic flow. Nginx,\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.host.co.in\/kb\/how-do-i-setup-nginx-as-a-reverse-proxy-in-plesk\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2024-01-09T06:55:02+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2026-02-09T07:53:49+00:00\" \/>\n\t\t<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/host.co.in.india\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@HostIndia\" \/>\n\t\t<meta name=\"twitter:title\" content=\"How Do I Setup Nginx as a Reverse Proxy in Plesk?\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Setting up Nginx as a reverse proxy in Plesk involves several steps, and in this guide, we&#039;ll walk you through the process. Understanding Reverse Proxy: A reverse proxy acts as an intermediary between internal applications and external clients. It directs client requests to the appropriate backend Linux VPS server, ensuring proper network traffic flow. Nginx,\" \/>\n\t\t<meta name=\"twitter:creator\" content=\"@HostIndia\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.host.co.in\\\/kb\\\/how-do-i-setup-nginx-as-a-reverse-proxy-in-plesk\\\/#article\",\"name\":\"How Do I Setup Nginx as a Reverse Proxy in Plesk?\",\"headline\":\"How Do I Setup Nginx as a Reverse Proxy in Plesk?\",\"author\":{\"@id\":\"https:\\\/\\\/www.host.co.in\\\/kb\\\/author\\\/sarang-khedkar\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.host.co.in\\\/kb\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.host.co.in\\\/kb\\\/wp-content\\\/uploads\\\/2024\\\/01\\\/Cpanel-Whm-1.png\",\"width\":1200,\"height\":628},\"datePublished\":\"2024-01-09T12:25:02+05:30\",\"dateModified\":\"2026-02-09T13:23:49+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.host.co.in\\\/kb\\\/how-do-i-setup-nginx-as-a-reverse-proxy-in-plesk\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.host.co.in\\\/kb\\\/how-do-i-setup-nginx-as-a-reverse-proxy-in-plesk\\\/#webpage\"},\"articleSection\":\"Dedicated Web Hosting, Nginx\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.host.co.in\\\/kb\\\/how-do-i-setup-nginx-as-a-reverse-proxy-in-plesk\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.host.co.in\\\/kb#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.host.co.in\\\/kb\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.host.co.in\\\/kb\\\/category\\\/dedicated-web-hosting\\\/#listItem\",\"name\":\"Dedicated Web Hosting\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.host.co.in\\\/kb\\\/category\\\/dedicated-web-hosting\\\/#listItem\",\"position\":2,\"name\":\"Dedicated Web Hosting\",\"item\":\"https:\\\/\\\/www.host.co.in\\\/kb\\\/category\\\/dedicated-web-hosting\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.host.co.in\\\/kb\\\/how-do-i-setup-nginx-as-a-reverse-proxy-in-plesk\\\/#listItem\",\"name\":\"How Do I Setup Nginx as a Reverse Proxy in Plesk?\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.host.co.in\\\/kb#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.host.co.in\\\/kb\\\/how-do-i-setup-nginx-as-a-reverse-proxy-in-plesk\\\/#listItem\",\"position\":3,\"name\":\"How Do I Setup Nginx as a Reverse Proxy in Plesk?\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.host.co.in\\\/kb\\\/category\\\/dedicated-web-hosting\\\/#listItem\",\"name\":\"Dedicated Web Hosting\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.host.co.in\\\/kb\\\/#organization\",\"name\":\"Host.co.in Knowledge Base\",\"description\":\"India's Top Web Hosting Company\",\"url\":\"https:\\\/\\\/www.host.co.in\\\/kb\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.host.co.in\\\/kb\\\/wp-content\\\/uploads\\\/2017\\\/09\\\/host.png\",\"@id\":\"https:\\\/\\\/www.host.co.in\\\/kb\\\/how-do-i-setup-nginx-as-a-reverse-proxy-in-plesk\\\/#organizationLogo\",\"width\":258,\"height\":76},\"image\":{\"@id\":\"https:\\\/\\\/www.host.co.in\\\/kb\\\/how-do-i-setup-nginx-as-a-reverse-proxy-in-plesk\\\/#organizationLogo\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/host.co.in.india\",\"https:\\\/\\\/twitter.com\\\/HostIndia\",\"https:\\\/\\\/www.instagram.com\\\/Host.co.in\\\/\",\"https:\\\/\\\/www.pinterest.com\\\/HostinginIndia\\\/\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UChWntAsR9_PYB0vfNBpAMVw\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/host-co-in-india\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.host.co.in\\\/kb\\\/author\\\/sarang-khedkar\\\/#author\",\"url\":\"https:\\\/\\\/www.host.co.in\\\/kb\\\/author\\\/sarang-khedkar\\\/\",\"name\":\"Sarang Khedkar\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.host.co.in\\\/kb\\\/how-do-i-setup-nginx-as-a-reverse-proxy-in-plesk\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6f0b038853cb982692d922adf814ce88cd08cc2b7cc869f4791b59273c5d6843?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Sarang Khedkar\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.host.co.in\\\/kb\\\/how-do-i-setup-nginx-as-a-reverse-proxy-in-plesk\\\/#webpage\",\"url\":\"https:\\\/\\\/www.host.co.in\\\/kb\\\/how-do-i-setup-nginx-as-a-reverse-proxy-in-plesk\\\/\",\"name\":\"How Do I Setup Nginx as a Reverse Proxy in Plesk?\",\"description\":\"Setting up Nginx as a reverse proxy in Plesk involves several steps, and in this guide, we'll walk you through the process. Understanding Reverse Proxy: A reverse proxy acts as an intermediary between internal applications and external clients. It directs client requests to the appropriate backend Linux VPS server, ensuring proper network traffic flow. Nginx,\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.host.co.in\\\/kb\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.host.co.in\\\/kb\\\/how-do-i-setup-nginx-as-a-reverse-proxy-in-plesk\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.host.co.in\\\/kb\\\/author\\\/sarang-khedkar\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.host.co.in\\\/kb\\\/author\\\/sarang-khedkar\\\/#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.host.co.in\\\/kb\\\/wp-content\\\/uploads\\\/2024\\\/01\\\/Cpanel-Whm-1.png\",\"@id\":\"https:\\\/\\\/www.host.co.in\\\/kb\\\/how-do-i-setup-nginx-as-a-reverse-proxy-in-plesk\\\/#mainImage\",\"width\":1200,\"height\":628},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.host.co.in\\\/kb\\\/how-do-i-setup-nginx-as-a-reverse-proxy-in-plesk\\\/#mainImage\"},\"datePublished\":\"2024-01-09T12:25:02+05:30\",\"dateModified\":\"2026-02-09T13:23:49+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.host.co.in\\\/kb\\\/#website\",\"url\":\"https:\\\/\\\/www.host.co.in\\\/kb\\\/\",\"name\":\"Host.co.in KB\",\"description\":\"India's Top Web Hosting Company\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.host.co.in\\\/kb\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"How Do I Setup Nginx as a Reverse Proxy in Plesk?","description":"Setting up Nginx as a reverse proxy in Plesk involves several steps, and in this guide, we'll walk you through the process. Understanding Reverse Proxy: A reverse proxy acts as an intermediary between internal applications and external clients. It directs client requests to the appropriate backend Linux VPS server, ensuring proper network traffic flow. Nginx,","canonical_url":"https:\/\/www.host.co.in\/kb\/how-do-i-setup-nginx-as-a-reverse-proxy-in-plesk\/","robots":"max-image-preview:large","keywords":"nginx,dedicated web hosting","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.host.co.in\/kb\/how-do-i-setup-nginx-as-a-reverse-proxy-in-plesk\/#article","name":"How Do I Setup Nginx as a Reverse Proxy in Plesk?","headline":"How Do I Setup Nginx as a Reverse Proxy in Plesk?","author":{"@id":"https:\/\/www.host.co.in\/kb\/author\/sarang-khedkar\/#author"},"publisher":{"@id":"https:\/\/www.host.co.in\/kb\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/www.host.co.in\/kb\/wp-content\/uploads\/2024\/01\/Cpanel-Whm-1.png","width":1200,"height":628},"datePublished":"2024-01-09T12:25:02+05:30","dateModified":"2026-02-09T13:23:49+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/www.host.co.in\/kb\/how-do-i-setup-nginx-as-a-reverse-proxy-in-plesk\/#webpage"},"isPartOf":{"@id":"https:\/\/www.host.co.in\/kb\/how-do-i-setup-nginx-as-a-reverse-proxy-in-plesk\/#webpage"},"articleSection":"Dedicated Web Hosting, Nginx"},{"@type":"BreadcrumbList","@id":"https:\/\/www.host.co.in\/kb\/how-do-i-setup-nginx-as-a-reverse-proxy-in-plesk\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.host.co.in\/kb#listItem","position":1,"name":"Home","item":"https:\/\/www.host.co.in\/kb","nextItem":{"@type":"ListItem","@id":"https:\/\/www.host.co.in\/kb\/category\/dedicated-web-hosting\/#listItem","name":"Dedicated Web Hosting"}},{"@type":"ListItem","@id":"https:\/\/www.host.co.in\/kb\/category\/dedicated-web-hosting\/#listItem","position":2,"name":"Dedicated Web Hosting","item":"https:\/\/www.host.co.in\/kb\/category\/dedicated-web-hosting\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.host.co.in\/kb\/how-do-i-setup-nginx-as-a-reverse-proxy-in-plesk\/#listItem","name":"How Do I Setup Nginx as a Reverse Proxy in Plesk?"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.host.co.in\/kb#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.host.co.in\/kb\/how-do-i-setup-nginx-as-a-reverse-proxy-in-plesk\/#listItem","position":3,"name":"How Do I Setup Nginx as a Reverse Proxy in Plesk?","previousItem":{"@type":"ListItem","@id":"https:\/\/www.host.co.in\/kb\/category\/dedicated-web-hosting\/#listItem","name":"Dedicated Web Hosting"}}]},{"@type":"Organization","@id":"https:\/\/www.host.co.in\/kb\/#organization","name":"Host.co.in Knowledge Base","description":"India's Top Web Hosting Company","url":"https:\/\/www.host.co.in\/kb\/","logo":{"@type":"ImageObject","url":"https:\/\/www.host.co.in\/kb\/wp-content\/uploads\/2017\/09\/host.png","@id":"https:\/\/www.host.co.in\/kb\/how-do-i-setup-nginx-as-a-reverse-proxy-in-plesk\/#organizationLogo","width":258,"height":76},"image":{"@id":"https:\/\/www.host.co.in\/kb\/how-do-i-setup-nginx-as-a-reverse-proxy-in-plesk\/#organizationLogo"},"sameAs":["https:\/\/www.facebook.com\/host.co.in.india","https:\/\/twitter.com\/HostIndia","https:\/\/www.instagram.com\/Host.co.in\/","https:\/\/www.pinterest.com\/HostinginIndia\/","https:\/\/www.youtube.com\/channel\/UChWntAsR9_PYB0vfNBpAMVw","https:\/\/www.linkedin.com\/company\/host-co-in-india\/"]},{"@type":"Person","@id":"https:\/\/www.host.co.in\/kb\/author\/sarang-khedkar\/#author","url":"https:\/\/www.host.co.in\/kb\/author\/sarang-khedkar\/","name":"Sarang Khedkar","image":{"@type":"ImageObject","@id":"https:\/\/www.host.co.in\/kb\/how-do-i-setup-nginx-as-a-reverse-proxy-in-plesk\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/6f0b038853cb982692d922adf814ce88cd08cc2b7cc869f4791b59273c5d6843?s=96&d=mm&r=g","width":96,"height":96,"caption":"Sarang Khedkar"}},{"@type":"WebPage","@id":"https:\/\/www.host.co.in\/kb\/how-do-i-setup-nginx-as-a-reverse-proxy-in-plesk\/#webpage","url":"https:\/\/www.host.co.in\/kb\/how-do-i-setup-nginx-as-a-reverse-proxy-in-plesk\/","name":"How Do I Setup Nginx as a Reverse Proxy in Plesk?","description":"Setting up Nginx as a reverse proxy in Plesk involves several steps, and in this guide, we'll walk you through the process. Understanding Reverse Proxy: A reverse proxy acts as an intermediary between internal applications and external clients. It directs client requests to the appropriate backend Linux VPS server, ensuring proper network traffic flow. Nginx,","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.host.co.in\/kb\/#website"},"breadcrumb":{"@id":"https:\/\/www.host.co.in\/kb\/how-do-i-setup-nginx-as-a-reverse-proxy-in-plesk\/#breadcrumblist"},"author":{"@id":"https:\/\/www.host.co.in\/kb\/author\/sarang-khedkar\/#author"},"creator":{"@id":"https:\/\/www.host.co.in\/kb\/author\/sarang-khedkar\/#author"},"image":{"@type":"ImageObject","url":"https:\/\/www.host.co.in\/kb\/wp-content\/uploads\/2024\/01\/Cpanel-Whm-1.png","@id":"https:\/\/www.host.co.in\/kb\/how-do-i-setup-nginx-as-a-reverse-proxy-in-plesk\/#mainImage","width":1200,"height":628},"primaryImageOfPage":{"@id":"https:\/\/www.host.co.in\/kb\/how-do-i-setup-nginx-as-a-reverse-proxy-in-plesk\/#mainImage"},"datePublished":"2024-01-09T12:25:02+05:30","dateModified":"2026-02-09T13:23:49+05:30"},{"@type":"WebSite","@id":"https:\/\/www.host.co.in\/kb\/#website","url":"https:\/\/www.host.co.in\/kb\/","name":"Host.co.in KB","description":"India's Top Web Hosting Company","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.host.co.in\/kb\/#organization"}}]},"og:locale":"en_US","og:site_name":"Knowledgebase | India's Top Web Hosting Company","og:type":"article","og:title":"How Do I Setup Nginx as a Reverse Proxy in Plesk?","og:description":"Setting up Nginx as a reverse proxy in Plesk involves several steps, and in this guide, we'll walk you through the process. Understanding Reverse Proxy: A reverse proxy acts as an intermediary between internal applications and external clients. It directs client requests to the appropriate backend Linux VPS server, ensuring proper network traffic flow. Nginx,","og:url":"https:\/\/www.host.co.in\/kb\/how-do-i-setup-nginx-as-a-reverse-proxy-in-plesk\/","article:published_time":"2024-01-09T06:55:02+00:00","article:modified_time":"2026-02-09T07:53:49+00:00","article:publisher":"https:\/\/www.facebook.com\/host.co.in.india","twitter:card":"summary","twitter:site":"@HostIndia","twitter:title":"How Do I Setup Nginx as a Reverse Proxy in Plesk?","twitter:description":"Setting up Nginx as a reverse proxy in Plesk involves several steps, and in this guide, we'll walk you through the process. Understanding Reverse Proxy: A reverse proxy acts as an intermediary between internal applications and external clients. It directs client requests to the appropriate backend Linux VPS server, ensuring proper network traffic flow. Nginx,","twitter:creator":"@HostIndia"},"aioseo_meta_data":{"post_id":"4972","title":null,"description":null,"keywords":null,"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_custom_url":null,"og_image_custom_fields":null,"og_custom_image_width":null,"og_custom_image_height":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"none","tabs":null,"priority":null,"frequency":"default","local_seo":null,"breadcrumb_settings":null,"created":"2025-10-14 11:20:39","updated":"2026-05-19 23:50:03","primary_term":null,"og_image_url":null,"og_image_width":null,"og_image_height":null,"twitter_image_url":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"limit_modified_date":false,"ai":null,"seo_analyzer_scan_date":null,"focus_keyword":null,"additional_keywords":null,"truseo_locale":null},"_links":{"self":[{"href":"https:\/\/www.host.co.in\/kb\/wp-json\/wp\/v2\/posts\/4972","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.host.co.in\/kb\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.host.co.in\/kb\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.host.co.in\/kb\/wp-json\/wp\/v2\/users\/26"}],"replies":[{"embeddable":true,"href":"https:\/\/www.host.co.in\/kb\/wp-json\/wp\/v2\/comments?post=4972"}],"version-history":[{"count":2,"href":"https:\/\/www.host.co.in\/kb\/wp-json\/wp\/v2\/posts\/4972\/revisions"}],"predecessor-version":[{"id":6293,"href":"https:\/\/www.host.co.in\/kb\/wp-json\/wp\/v2\/posts\/4972\/revisions\/6293"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.host.co.in\/kb\/wp-json\/wp\/v2\/media\/6290"}],"wp:attachment":[{"href":"https:\/\/www.host.co.in\/kb\/wp-json\/wp\/v2\/media?parent=4972"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.host.co.in\/kb\/wp-json\/wp\/v2\/categories?post=4972"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.host.co.in\/kb\/wp-json\/wp\/v2\/tags?post=4972"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}