{"id":1663,"date":"2020-09-23T06:35:50","date_gmt":"2020-09-23T06:35:50","guid":{"rendered":"https:\/\/ubiq.co\/tech-blog\/?p=1663"},"modified":"2024-08-27T04:38:01","modified_gmt":"2024-08-27T04:38:01","slug":"how-to-enable-nginx-status-page","status":"publish","type":"post","link":"https:\/\/ubiq.co\/tech-blog\/how-to-enable-nginx-status-page\/","title":{"rendered":"How To Enable NGINX Status Page"},"content":{"rendered":"\n<p>When you run a website, it is important to regularly monitor the status of your web server. It helps us understand if our server is overloaded and how it is performing. NGINX is a popular web server that is free, scalable and enjoys a wide user base. It offers several modules such as <strong>ngx_http_stub_status_module<\/strong> module that allows you to easily monitor server health. NGINX status page displays many useful server KPI metrics such as no. of active client connections, accepted, handled &amp; total requests. It also shows reading, writing, and waiting connections. We will look at how to enable NGINX status page for your NGINX server.<\/p>\n\n\n\n<div id=\"ez-toc-container\" class=\"ez-toc-v2_0_82_2 counter-hierarchy ez-toc-counter ez-toc-grey ez-toc-container-direction\">\n<div class=\"ez-toc-title-container\">\n<p class=\"ez-toc-title\" style=\"cursor:inherit\">Table of Contents<\/p>\n<span class=\"ez-toc-title-toggle\"><a href=\"#\" class=\"ez-toc-pull-right ez-toc-btn ez-toc-btn-xs ez-toc-btn-default ez-toc-toggle\" aria-label=\"Toggle Table of Content\"><span class=\"ez-toc-js-icon-con\"><span class=\"\"><span class=\"eztoc-hide\" style=\"display:none;\">Toggle<\/span><span class=\"ez-toc-icon-toggle-span\"><svg style=\"fill: #999;color:#999\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"list-377408\" width=\"20px\" height=\"20px\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M6 6H4v2h2V6zm14 0H8v2h12V6zM4 11h2v2H4v-2zm16 0H8v2h12v-2zM4 16h2v2H4v-2zm16 0H8v2h12v-2z\" fill=\"currentColor\"><\/path><\/svg><svg style=\"fill: #999;color:#999\" class=\"arrow-unsorted-368013\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"10px\" height=\"10px\" viewBox=\"0 0 24 24\" version=\"1.2\" baseProfile=\"tiny\"><path d=\"M18.2 9.3l-6.2-6.3-6.2 6.3c-.2.2-.3.4-.3.7s.1.5.3.7c.2.2.4.3.7.3h11c.3 0 .5-.1.7-.3.2-.2.3-.5.3-.7s-.1-.5-.3-.7zM5.8 14.7l6.2 6.3 6.2-6.3c.2-.2.3-.5.3-.7s-.1-.5-.3-.7c-.2-.2-.4-.3-.7-.3h-11c-.3 0-.5.1-.7.3-.2.2-.3.5-.3.7s.1.5.3.7z\"\/><\/svg><\/span><\/span><\/span><\/a><\/span><\/div>\n<nav><ul class='ez-toc-list ez-toc-list-level-1 ' ><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-1\" href=\"https:\/\/ubiq.co\/tech-blog\/how-to-enable-nginx-status-page\/#What_is_NGINX_Status_Page\" >What is NGINX Status Page<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-2\" href=\"https:\/\/ubiq.co\/tech-blog\/how-to-enable-nginx-status-page\/#How_to_Enable_NGINX_status_page\" >How to Enable NGINX status page<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-3\" href=\"https:\/\/ubiq.co\/tech-blog\/how-to-enable-nginx-status-page\/#1_Check_if_NGINX_status_page_is_enabled\" >1. Check if NGINX status page is enabled<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-4\" href=\"https:\/\/ubiq.co\/tech-blog\/how-to-enable-nginx-status-page\/#2_Enable_status_page\" >2. Enable status page<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-5\" href=\"https:\/\/ubiq.co\/tech-blog\/how-to-enable-nginx-status-page\/#3_Restart_NGINX_Server\" >3. Restart NGINX Server<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-6\" href=\"https:\/\/ubiq.co\/tech-blog\/how-to-enable-nginx-status-page\/#4_Test_NGINX_Status_Page\" >4. Test NGINX Status Page<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-7\" href=\"https:\/\/ubiq.co\/tech-blog\/how-to-enable-nginx-status-page\/#Conclusion\" >Conclusion<\/a><\/li><\/ul><\/nav><\/div>\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"What_is_NGINX_Status_Page\"><\/span>What is NGINX Status Page<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>Every NGINX server supports ngx_http_stub_status_module that allows you to view server metrics on HTTP\/HTTPS web pages. It helps you to monitor important information such as number of connections, requests, response codes, etc. that help site administrators understand server load. It provides live information that can be automatically refreshed. In many cases, this server status page is disabled by default. You can check it with the following command.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># nginx -V 2>&amp;1 | grep -o with-http_stub_status_module<br>with-http_sub_status_module<\/pre>\n\n\n\n<p>Please note <strong>ngx_http_stub_status_module<\/strong>\u00a0module has been replaced by <strong>ngx_http_api_module<\/strong>\u00a0module since\u00a0<strong>Nginx 1.13.0<\/strong>\u00a0version. So you will need to use the following command for new NGINX servers.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># nginx -V 2>&amp;1 | grep -o with-http_api_module<br>with-http_sub_status_module<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"How_to_Enable_NGINX_status_page\"><\/span>How to Enable NGINX status page<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>Here are the steps to enable NGINX status page.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"1_Check_if_NGINX_status_page_is_enabled\"><\/span>1. Check if NGINX status page is enabled<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>The status page module needs to be included during NGINX installation. For this purpose, you will need to compile NGINX from source along with status module. It cannot be added once NGINX is installed. Here are the commands to compile NGINX with <em>&#8211;with-http_stub_status_module<\/em><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># wget http:\/\/nginx.org\/download\/nginx-1.13.12.tar.gz \n# tar xfz nginx-1.13.12.tar.gz \n# cd nginx-1.13.12\/ \n# .\/configure --with-http_stub_status_module \n# make \n# make install<\/pre>\n\n\n\n<p>Bonus Read : <a href=\"https:\/\/ubiq.co\/tech-blog\/install-varnish-cache-nginx-centos\/\">How to Install Varnish for NGINX<\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"2_Enable_status_page\"><\/span>2. Enable status page<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>Open terminal and run the following command to open NGINX server configuration file.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ sudo vi \/etc\/nginx\/nginx.conf<\/pre>\n\n\n\n<p>If you have configured separate virtual hosts for your website (e.g www.example.com), such as \/etc\/nginx\/sites-enabled\/website.conf then open its configuration with the following command<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ sudo vi&nbsp;\/etc\/nginx\/sites-enabled\/website.conf<\/pre>\n\n\n\n<p>We will enable NGINX status page by setting up a URL (e.g \/status_page) for status page. For this, add a <em>location<\/em> block in NGINX server configuration as shown below.<\/p>\n\n\n\n<p>Add the following <em>location<\/em> block that will enable <em>stub_status<\/em> module. You can change the URL \/nginx_status to something else as per your requirement.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">location \/nginx_status { <br>          stub_status; <br>}<\/pre>\n\n\n\n<p>The above configuration will allow anyone from anywhere to request \/nginx_status. So add the following lines to allow requests only from localhost and nowhere else.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">location \/nginx_status { <br>          stub_status; <br><strong>          allow 127.0.0.1;<br>          deny all;<\/strong><br>}<\/pre>\n\n\n\n<p>If you want to allow a trusted external IP, you can also include it as per your requirement.<\/p>\n\n\n\n<p> Replace 127.0.0.1 above with your server&#8217;s IP address (e.g  54.45.23.21). So your <em>server<\/em> block will look like<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">server {<br>...<br>      location \/nginx_status {<br>        stub_status;<br><strong>        allow 127.0.0.1;<br>        allow 54.45.23.21; <br>        deny all; <br><\/strong>       }<br>...<br>}<\/pre>\n\n\n\n<p>Bonus Read : <a href=\"https:\/\/ubiq.co\/tech-blog\/nginx-ssl-configuration-step-step-details\/\">Step by Step NGINX SSL configuration<\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"3_Restart_NGINX_Server\"><\/span>3. Restart NGINX Server<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>Run the following command to check syntax of your updated config file.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ sudo nginx -t<\/pre>\n\n\n\n<p>If there are no errors, run the following command to restart NGINX server.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ sudo service nginx reload #debian\/ubuntu<br>$ systemctl restart nginx #redhat\/centos<\/pre>\n\n\n\n<p>Bonus Read : <a href=\"https:\/\/ubiq.co\/tech-blog\/prevent-image-hotlinking-nginx\/\">How to Prevent Image Hotlinking in NGINX<\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"4_Test_NGINX_Status_Page\"><\/span>4. Test NGINX Status Page<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>Run the following command to visit your status page URL using <em>curl<\/em> command. Replace 127.0.0.1 with your server IP or domain name<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># curl http:\/\/127.0.0.1\/nginx_status \nOR \n# curl http:\/\/www.example.com\/nginx_status<\/pre>\n\n\n\n<p>You will see a similar output with server metrics.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"596\" height=\"119\" src=\"https:\/\/i0.wp.com\/ubiq.co\/tech-blog\/wp-content\/uploads\/2020\/09\/Check-Nginx-Status-Page.png?resize=596%2C119&#038;ssl=1\" alt=\"\" class=\"wp-image-1670\"\/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Conclusion\"><\/span>Conclusion<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>In this article, we have learnt what is NGINX status page, and how to enable it. NGINX status page provides a single point for many useful server metrics. It is important to enable it to regularly monitor your NGINX server and ensure that it does not get overloaded.  Hopefully the above tutorial will help you enable status page in NGINX. <\/p>\n\n\n\n<p><a href=\"http:\/\/ubiq.co\/\">Ubiq<\/a>&nbsp;makes it easy to visualize data in minutes, and monitor in real-time dashboards.&nbsp;<a href=\"http:\/\/ubiq.co\/accounts\/register\">Try it<\/a> today!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>NGINX status page allows you to monitor NGINX web server health. Here&#8217;s how to enable NGINX status page for your website.<\/p>\n","protected":false},"author":1,"featured_media":1673,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[9],"tags":[187],"class_list":["post-1663","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-nginx","tag-status-page"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How To Enable NGINX Status Page - Ubiq BI<\/title>\n<meta name=\"description\" content=\"NGINX status page allows you to monitor NGINX web server health. Here&#039;s how to enable NGINX status page for your website.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/ubiq.co\/tech-blog\/how-to-enable-nginx-status-page\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Enable NGINX Status Page - Ubiq BI\" \/>\n<meta property=\"og:description\" content=\"NGINX status page allows you to monitor NGINX web server health. Here&#039;s how to enable NGINX status page for your website.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/ubiq.co\/tech-blog\/how-to-enable-nginx-status-page\/\" \/>\n<meta property=\"og:site_name\" content=\"Ubiq BI\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/ubiqbi\" \/>\n<meta property=\"article:published_time\" content=\"2020-09-23T06:35:50+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-08-27T04:38:01+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/ubiq.co\/tech-blog\/wp-content\/uploads\/2020\/09\/enable-nginx-status-page.png\" \/>\n\t<meta property=\"og:image:width\" content=\"700\" \/>\n\t<meta property=\"og:image:height\" content=\"400\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Sreeram Sreenivasan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@UbiqBI\" \/>\n<meta name=\"twitter:site\" content=\"@UbiqBI\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Sreeram Sreenivasan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/ubiq.co\\\/tech-blog\\\/how-to-enable-nginx-status-page\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/ubiq.co\\\/tech-blog\\\/how-to-enable-nginx-status-page\\\/\"},\"author\":{\"name\":\"Sreeram Sreenivasan\",\"@id\":\"https:\\\/\\\/ubiq.co\\\/tech-blog\\\/#\\\/schema\\\/person\\\/db98d49a766a3a111d8510935ab90abc\"},\"headline\":\"How To Enable NGINX Status Page\",\"datePublished\":\"2020-09-23T06:35:50+00:00\",\"dateModified\":\"2024-08-27T04:38:01+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/ubiq.co\\\/tech-blog\\\/how-to-enable-nginx-status-page\\\/\"},\"wordCount\":623,\"image\":{\"@id\":\"https:\\\/\\\/ubiq.co\\\/tech-blog\\\/how-to-enable-nginx-status-page\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/i0.wp.com\\\/ubiq.co\\\/tech-blog\\\/wp-content\\\/uploads\\\/2020\\\/09\\\/enable-nginx-status-page.png?fit=700%2C400&ssl=1\",\"keywords\":[\"status page\"],\"articleSection\":[\"Nginx\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/ubiq.co\\\/tech-blog\\\/how-to-enable-nginx-status-page\\\/\",\"url\":\"https:\\\/\\\/ubiq.co\\\/tech-blog\\\/how-to-enable-nginx-status-page\\\/\",\"name\":\"How To Enable NGINX Status Page - Ubiq BI\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/ubiq.co\\\/tech-blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/ubiq.co\\\/tech-blog\\\/how-to-enable-nginx-status-page\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/ubiq.co\\\/tech-blog\\\/how-to-enable-nginx-status-page\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/i0.wp.com\\\/ubiq.co\\\/tech-blog\\\/wp-content\\\/uploads\\\/2020\\\/09\\\/enable-nginx-status-page.png?fit=700%2C400&ssl=1\",\"datePublished\":\"2020-09-23T06:35:50+00:00\",\"dateModified\":\"2024-08-27T04:38:01+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/ubiq.co\\\/tech-blog\\\/#\\\/schema\\\/person\\\/db98d49a766a3a111d8510935ab90abc\"},\"description\":\"NGINX status page allows you to monitor NGINX web server health. Here's how to enable NGINX status page for your website.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/ubiq.co\\\/tech-blog\\\/how-to-enable-nginx-status-page\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/ubiq.co\\\/tech-blog\\\/how-to-enable-nginx-status-page\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/ubiq.co\\\/tech-blog\\\/how-to-enable-nginx-status-page\\\/#primaryimage\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/ubiq.co\\\/tech-blog\\\/wp-content\\\/uploads\\\/2020\\\/09\\\/enable-nginx-status-page.png?fit=700%2C400&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/ubiq.co\\\/tech-blog\\\/wp-content\\\/uploads\\\/2020\\\/09\\\/enable-nginx-status-page.png?fit=700%2C400&ssl=1\",\"width\":700,\"height\":400,\"caption\":\"enable status page in nginx\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/ubiq.co\\\/tech-blog\\\/how-to-enable-nginx-status-page\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/ubiq.co\\\/tech-blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Enable NGINX Status Page\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/ubiq.co\\\/tech-blog\\\/#website\",\"url\":\"https:\\\/\\\/ubiq.co\\\/tech-blog\\\/\",\"name\":\"Ubiq BI\",\"description\":\"Build dashboards &amp; reports in minutes\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/ubiq.co\\\/tech-blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/ubiq.co\\\/tech-blog\\\/#\\\/schema\\\/person\\\/db98d49a766a3a111d8510935ab90abc\",\"name\":\"Sreeram Sreenivasan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4b3127ed2d4bb8efb3fa0bbb52cf2efd4d0156c97fc05a503537c883e8279947?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4b3127ed2d4bb8efb3fa0bbb52cf2efd4d0156c97fc05a503537c883e8279947?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4b3127ed2d4bb8efb3fa0bbb52cf2efd4d0156c97fc05a503537c883e8279947?s=96&d=mm&r=g\",\"caption\":\"Sreeram Sreenivasan\"},\"description\":\"Sreeram Sreenivasan is the Founder of Ubiq. He has helped many Fortune 500 companies in the areas of BI &amp; software development.\",\"sameAs\":[\"https:\\\/\\\/www.linkedin.com\\\/in\\\/sreeram-sreenivasan\\\/\"],\"url\":\"https:\\\/\\\/ubiq.co\\\/tech-blog\\\/author\\\/wordpress\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How To Enable NGINX Status Page - Ubiq BI","description":"NGINX status page allows you to monitor NGINX web server health. Here's how to enable NGINX status page for your website.","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:\/\/ubiq.co\/tech-blog\/how-to-enable-nginx-status-page\/","og_locale":"en_US","og_type":"article","og_title":"How To Enable NGINX Status Page - Ubiq BI","og_description":"NGINX status page allows you to monitor NGINX web server health. Here's how to enable NGINX status page for your website.","og_url":"https:\/\/ubiq.co\/tech-blog\/how-to-enable-nginx-status-page\/","og_site_name":"Ubiq BI","article_publisher":"https:\/\/www.facebook.com\/ubiqbi","article_published_time":"2020-09-23T06:35:50+00:00","article_modified_time":"2024-08-27T04:38:01+00:00","og_image":[{"width":700,"height":400,"url":"https:\/\/ubiq.co\/tech-blog\/wp-content\/uploads\/2020\/09\/enable-nginx-status-page.png","type":"image\/png"}],"author":"Sreeram Sreenivasan","twitter_card":"summary_large_image","twitter_creator":"@UbiqBI","twitter_site":"@UbiqBI","twitter_misc":{"Written by":"Sreeram Sreenivasan","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/ubiq.co\/tech-blog\/how-to-enable-nginx-status-page\/#article","isPartOf":{"@id":"https:\/\/ubiq.co\/tech-blog\/how-to-enable-nginx-status-page\/"},"author":{"name":"Sreeram Sreenivasan","@id":"https:\/\/ubiq.co\/tech-blog\/#\/schema\/person\/db98d49a766a3a111d8510935ab90abc"},"headline":"How To Enable NGINX Status Page","datePublished":"2020-09-23T06:35:50+00:00","dateModified":"2024-08-27T04:38:01+00:00","mainEntityOfPage":{"@id":"https:\/\/ubiq.co\/tech-blog\/how-to-enable-nginx-status-page\/"},"wordCount":623,"image":{"@id":"https:\/\/ubiq.co\/tech-blog\/how-to-enable-nginx-status-page\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/ubiq.co\/tech-blog\/wp-content\/uploads\/2020\/09\/enable-nginx-status-page.png?fit=700%2C400&ssl=1","keywords":["status page"],"articleSection":["Nginx"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/ubiq.co\/tech-blog\/how-to-enable-nginx-status-page\/","url":"https:\/\/ubiq.co\/tech-blog\/how-to-enable-nginx-status-page\/","name":"How To Enable NGINX Status Page - Ubiq BI","isPartOf":{"@id":"https:\/\/ubiq.co\/tech-blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/ubiq.co\/tech-blog\/how-to-enable-nginx-status-page\/#primaryimage"},"image":{"@id":"https:\/\/ubiq.co\/tech-blog\/how-to-enable-nginx-status-page\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/ubiq.co\/tech-blog\/wp-content\/uploads\/2020\/09\/enable-nginx-status-page.png?fit=700%2C400&ssl=1","datePublished":"2020-09-23T06:35:50+00:00","dateModified":"2024-08-27T04:38:01+00:00","author":{"@id":"https:\/\/ubiq.co\/tech-blog\/#\/schema\/person\/db98d49a766a3a111d8510935ab90abc"},"description":"NGINX status page allows you to monitor NGINX web server health. Here's how to enable NGINX status page for your website.","breadcrumb":{"@id":"https:\/\/ubiq.co\/tech-blog\/how-to-enable-nginx-status-page\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/ubiq.co\/tech-blog\/how-to-enable-nginx-status-page\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/ubiq.co\/tech-blog\/how-to-enable-nginx-status-page\/#primaryimage","url":"https:\/\/i0.wp.com\/ubiq.co\/tech-blog\/wp-content\/uploads\/2020\/09\/enable-nginx-status-page.png?fit=700%2C400&ssl=1","contentUrl":"https:\/\/i0.wp.com\/ubiq.co\/tech-blog\/wp-content\/uploads\/2020\/09\/enable-nginx-status-page.png?fit=700%2C400&ssl=1","width":700,"height":400,"caption":"enable status page in nginx"},{"@type":"BreadcrumbList","@id":"https:\/\/ubiq.co\/tech-blog\/how-to-enable-nginx-status-page\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/ubiq.co\/tech-blog\/"},{"@type":"ListItem","position":2,"name":"How To Enable NGINX Status Page"}]},{"@type":"WebSite","@id":"https:\/\/ubiq.co\/tech-blog\/#website","url":"https:\/\/ubiq.co\/tech-blog\/","name":"Ubiq BI","description":"Build dashboards &amp; reports in minutes","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/ubiq.co\/tech-blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/ubiq.co\/tech-blog\/#\/schema\/person\/db98d49a766a3a111d8510935ab90abc","name":"Sreeram Sreenivasan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/4b3127ed2d4bb8efb3fa0bbb52cf2efd4d0156c97fc05a503537c883e8279947?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/4b3127ed2d4bb8efb3fa0bbb52cf2efd4d0156c97fc05a503537c883e8279947?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4b3127ed2d4bb8efb3fa0bbb52cf2efd4d0156c97fc05a503537c883e8279947?s=96&d=mm&r=g","caption":"Sreeram Sreenivasan"},"description":"Sreeram Sreenivasan is the Founder of Ubiq. He has helped many Fortune 500 companies in the areas of BI &amp; software development.","sameAs":["https:\/\/www.linkedin.com\/in\/sreeram-sreenivasan\/"],"url":"https:\/\/ubiq.co\/tech-blog\/author\/wordpress\/"}]}},"jetpack_featured_media_url":"https:\/\/i0.wp.com\/ubiq.co\/tech-blog\/wp-content\/uploads\/2020\/09\/enable-nginx-status-page.png?fit=700%2C400&ssl=1","jetpack_shortlink":"https:\/\/wp.me\/pbGGTT-qP","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/ubiq.co\/tech-blog\/wp-json\/wp\/v2\/posts\/1663","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ubiq.co\/tech-blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ubiq.co\/tech-blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ubiq.co\/tech-blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/ubiq.co\/tech-blog\/wp-json\/wp\/v2\/comments?post=1663"}],"version-history":[{"count":20,"href":"https:\/\/ubiq.co\/tech-blog\/wp-json\/wp\/v2\/posts\/1663\/revisions"}],"predecessor-version":[{"id":4323,"href":"https:\/\/ubiq.co\/tech-blog\/wp-json\/wp\/v2\/posts\/1663\/revisions\/4323"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ubiq.co\/tech-blog\/wp-json\/wp\/v2\/media\/1673"}],"wp:attachment":[{"href":"https:\/\/ubiq.co\/tech-blog\/wp-json\/wp\/v2\/media?parent=1663"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ubiq.co\/tech-blog\/wp-json\/wp\/v2\/categories?post=1663"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ubiq.co\/tech-blog\/wp-json\/wp\/v2\/tags?post=1663"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}