{"id":2599,"date":"2018-09-30T10:25:26","date_gmt":"2018-09-30T04:55:26","guid":{"rendered":"https:\/\/blog.pheonixsolutions.com\/?p=2599"},"modified":"2018-10-12T16:06:35","modified_gmt":"2018-10-12T10:36:35","slug":"how-to-install-latest-version-of-ngnix-1-15-4-on-centos-7","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-latest-version-of-ngnix-1-15-4-on-centos-7\/","title":{"rendered":"How to Install Latest Version of ngnix (1.15.4) on Centos 7"},"content":{"rendered":"<h3>How to Install Latest Version of ngnix (1.15.4) on Centos 7<\/h3>\n<p><strong>Dated : 29-09-2018<\/strong><\/p>\n<p>Nginx is a flat,light weight,powerful HTTP web server. In this piece of writing, we will illustrate about ngnix web server latest version installation on centos 7 and How to allow traffic for\u00a0HTTP services,because by default the HTTP traffic are blocked.<\/p>\n<p><strong>Introduction :<\/strong><\/p>\n<p>Latest version of Nginx is not a part of CentOS default repositories.We can&#8217;t run and install nginx just by using &#8216;<strong>yum&#8217;<\/strong> command.For the installation we need external repositories.<\/p>\n<p>There are two Nginx repositories are available from Nginx as <strong>Stable<\/strong> and <strong>Mainline<\/strong> repositories as mentioned in <span style=\"text-decoration: underline;\">http:\/\/nginx.org\/en\/download.html<\/span><\/p>\n<p>If we are going to install Latest version always prefer Mainline repositories,because this repositories will contain newly added features to nginx.In stable repositories, the versions which are tested and proven will be there.All the new features are firstly introduced in mainline repository and after testing and validation about their proper functioning they will be move down to the stable repository.<\/p>\n<p><strong>Assumption :\u00a0<\/strong><\/p>\n<p>We are working on Linux Distibution &#8211; Centos 7\u00a0x86_64 and the web Server path will be \/etc\/ngnix<\/p>\n<p><strong>Installation Process<\/strong><\/p>\n<p><em><span style=\"text-decoration: underline;\"><strong>Step 1 :<\/strong><\/span><\/em> Create new repository for nginx<\/p>\n<p>To need to install latest version and add to the mainline repository,run the following command<\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">sudo vi \/etc\/yum.repos.d\/nginx.repo<\/code><\/p>\n<p>Now,copy and paste the below lines depending upon the requirement (Mainline or Stable repository)\u00a0 into nginx.repo file &amp; save it,<\/p>\n<p><strong>for Mainline repository,<\/strong><\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">[nginx]<br \/>\n<\/code><\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">name=nginx <\/code><\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">repo<\/code><\/p>\n<p>baseurl=http:\/\/nginx.org\/packages\/mainline\/centos\/$releasever\/$basearch\/<\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">gpgcheck=0<br \/>\n<\/code><\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">enabled=1<\/code><\/p>\n<p><strong>for Stable repository,<\/strong><\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">[nginx]<br \/>\n<\/code><\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">name=nginx<\/code><\/p>\n<p>repo<\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">baseurl=http:\/\/nginx.org\/packages\/mainline\/centos\/$releasever\/$basearch\/<\/code><\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">gpgcheck=0<br \/>\n<\/code><\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">enabled=1<\/code><\/p>\n<p>&nbsp;<\/p>\n<p><em><strong><span style=\"text-decoration: underline;\">Step 2 :<\/span><\/strong><\/em> Installation of nginx<\/p>\n<p>Run the below command to install nginx<\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">sudo yum install nginx<\/code><\/p>\n<p>Kudos ! it&#8217;s over.<\/p>\n<p>Now you can browse using host name or IP to access the nginx page.The page will be look as like shown below,<\/p>\n<p><a href=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/09\/nginx-1.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"alignleft size-full wp-image-2604\" src=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/09\/nginx-1.jpg\" alt=\"\" width=\"1299\" height=\"464\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/09\/nginx-1.jpg 1299w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/09\/nginx-1-300x107.jpg 300w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/09\/nginx-1-768x274.jpg 768w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/09\/nginx-1-1024x366.jpg 1024w\" sizes=\"auto, (max-width: 1299px) 100vw, 1299px\" \/><\/a><\/p>\n<p><em><span style=\"text-decoration: underline;\"><strong>Step 3:<\/strong> <\/span><\/em>Permission for HTTP Traffic to Nginx web server<\/p>\n<p>By default HTTP traffic is not allowed to Centos 7.In order to allow the traffic,we need to open the firewall by adding following services as shown below,<\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">sudo firewall-cmd --permanent --zone=public --add-service=http<\/code><\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">sudo firewall-cmd --permanent --zone=public --add-service=http<\/code><\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">sudo firewall-cmd --reload<\/code><\/p>\n<p>&nbsp;<\/p>\n<p>Hope you installed it successfully.Enjoy!<\/p>\n<p>Please feel free to provide constructive feedback. Comments are greatly appreciated !<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>How to Install Latest Version of ngnix (1.15.4) on Centos 7 Dated : 29-09-2018 Nginx is a flat,light weight,powerful HTTP web server. In this piece of writing, we will illustrate about ngnix web server latest version installation on centos 7 and How to allow traffic for\u00a0HTTP services,because by default the&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/how-to-install-latest-version-of-ngnix-1-15-4-on-centos-7\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">How to Install Latest Version of ngnix (1.15.4) on Centos 7<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[313,284,225,222,298,309,282,220],"tags":[415,423,422,421],"class_list":{"0":"post-2599","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-apache","7":"category-centos","8":"category-linux","9":"category-linux-commandsscripts","10":"category-nginx","11":"category-redhat","12":"category-ubuntu","13":"category-web-server","14":"tag-centos-7","15":"tag-firewalld","16":"tag-http","17":"tag-nginx-1-15-4","18":"h-entry","20":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pheonix Solutions - We Empower Your Business Growth<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/pheonixsolutions.com\/blog\/how-to-install-latest-version-of-ngnix-1-15-4-on-centos-7\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pheonix Solutions - We Empower Your Business Growth\" \/>\n<meta property=\"og:description\" content=\"How to Install Latest Version of ngnix (1.15.4) on Centos 7 Dated : 29-09-2018 Nginx is a flat,light weight,powerful HTTP web server. In this piece of writing, we will illustrate about ngnix web server latest version installation on centos 7 and How to allow traffic for\u00a0HTTP services,because by default the&hellip; Continue Reading How to Install Latest Version of ngnix (1.15.4) on Centos 7\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/how-to-install-latest-version-of-ngnix-1-15-4-on-centos-7\/\" \/>\n<meta property=\"og:site_name\" content=\"PHEONIXSOLUTIONS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/\" \/>\n<meta property=\"article:published_time\" content=\"2018-09-30T04:55:26+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-10-12T10:36:35+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/09\/nginx-1.jpg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:site\" content=\"@pheonixsolution\" \/>\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=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-latest-version-of-ngnix-1-15-4-on-centos-7\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-latest-version-of-ngnix-1-15-4-on-centos-7\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\"},\"headline\":\"How to Install Latest Version of ngnix (1.15.4) on Centos 7\",\"datePublished\":\"2018-09-30T04:55:26+00:00\",\"dateModified\":\"2018-10-12T10:36:35+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-latest-version-of-ngnix-1-15-4-on-centos-7\\\/\"},\"wordCount\":356,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-latest-version-of-ngnix-1-15-4-on-centos-7\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/blog.pheonixsolutions.com\\\/wp-content\\\/uploads\\\/2018\\\/09\\\/nginx-1.jpg\",\"keywords\":[\"Centos 7\",\"firewalld\",\"http\",\"nginx 1.15.4\"],\"articleSection\":[\"Apache\",\"Centos\",\"Linux\",\"Linux Commands\\\/Scripts\",\"Nginx\",\"Redhat\",\"Ubuntu\",\"Web Server\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-latest-version-of-ngnix-1-15-4-on-centos-7\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-latest-version-of-ngnix-1-15-4-on-centos-7\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-latest-version-of-ngnix-1-15-4-on-centos-7\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-latest-version-of-ngnix-1-15-4-on-centos-7\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-latest-version-of-ngnix-1-15-4-on-centos-7\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/blog.pheonixsolutions.com\\\/wp-content\\\/uploads\\\/2018\\\/09\\\/nginx-1.jpg\",\"datePublished\":\"2018-09-30T04:55:26+00:00\",\"dateModified\":\"2018-10-12T10:36:35+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-latest-version-of-ngnix-1-15-4-on-centos-7\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-latest-version-of-ngnix-1-15-4-on-centos-7\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-latest-version-of-ngnix-1-15-4-on-centos-7\\\/#primaryimage\",\"url\":\"https:\\\/\\\/blog.pheonixsolutions.com\\\/wp-content\\\/uploads\\\/2018\\\/09\\\/nginx-1.jpg\",\"contentUrl\":\"https:\\\/\\\/blog.pheonixsolutions.com\\\/wp-content\\\/uploads\\\/2018\\\/09\\\/nginx-1.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-latest-version-of-ngnix-1-15-4-on-centos-7\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Latest Version of ngnix (1.15.4) on Centos 7\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"name\":\"Pheonix Solutions\",\"description\":\"We Empower Your Business Growth\",\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\",\"name\":\"PheonixSolutions\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"width\":454,\"height\":300,\"caption\":\"PheonixSolutions\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/PheonixSolutions-209942982759387\\\/\",\"https:\\\/\\\/x.com\\\/pheonixsolution\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/blog.pheonixsolutions.com\"],\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pheonix Solutions - We Empower Your Business Growth","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:\/\/pheonixsolutions.com\/blog\/how-to-install-latest-version-of-ngnix-1-15-4-on-centos-7\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"How to Install Latest Version of ngnix (1.15.4) on Centos 7 Dated : 29-09-2018 Nginx is a flat,light weight,powerful HTTP web server. In this piece of writing, we will illustrate about ngnix web server latest version installation on centos 7 and How to allow traffic for\u00a0HTTP services,because by default the&hellip; Continue Reading How to Install Latest Version of ngnix (1.15.4) on Centos 7","og_url":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-latest-version-of-ngnix-1-15-4-on-centos-7\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2018-09-30T04:55:26+00:00","article_modified_time":"2018-10-12T10:36:35+00:00","og_image":[{"url":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/09\/nginx-1.jpg","type":"","width":"","height":""}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"admin","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-latest-version-of-ngnix-1-15-4-on-centos-7\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-latest-version-of-ngnix-1-15-4-on-centos-7\/"},"author":{"name":"admin","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503"},"headline":"How to Install Latest Version of ngnix (1.15.4) on Centos 7","datePublished":"2018-09-30T04:55:26+00:00","dateModified":"2018-10-12T10:36:35+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-latest-version-of-ngnix-1-15-4-on-centos-7\/"},"wordCount":356,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-latest-version-of-ngnix-1-15-4-on-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/09\/nginx-1.jpg","keywords":["Centos 7","firewalld","http","nginx 1.15.4"],"articleSection":["Apache","Centos","Linux","Linux Commands\/Scripts","Nginx","Redhat","Ubuntu","Web Server"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/how-to-install-latest-version-of-ngnix-1-15-4-on-centos-7\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-latest-version-of-ngnix-1-15-4-on-centos-7\/","url":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-latest-version-of-ngnix-1-15-4-on-centos-7\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-latest-version-of-ngnix-1-15-4-on-centos-7\/#primaryimage"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-latest-version-of-ngnix-1-15-4-on-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/09\/nginx-1.jpg","datePublished":"2018-09-30T04:55:26+00:00","dateModified":"2018-10-12T10:36:35+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-latest-version-of-ngnix-1-15-4-on-centos-7\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/how-to-install-latest-version-of-ngnix-1-15-4-on-centos-7\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-latest-version-of-ngnix-1-15-4-on-centos-7\/#primaryimage","url":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/09\/nginx-1.jpg","contentUrl":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/09\/nginx-1.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-latest-version-of-ngnix-1-15-4-on-centos-7\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Latest Version of ngnix (1.15.4) on Centos 7"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/blog\/#website","url":"https:\/\/pheonixsolutions.com\/blog\/","name":"Pheonix Solutions","description":"We Empower Your Business Growth","publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pheonixsolutions.com\/blog\/#organization","name":"PheonixSolutions","url":"https:\/\/pheonixsolutions.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","width":454,"height":300,"caption":"PheonixSolutions"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","https:\/\/x.com\/pheonixsolution"]},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","caption":"admin"},"sameAs":["http:\/\/blog.pheonixsolutions.com"],"url":"https:\/\/pheonixsolutions.com\/blog\/author\/admin\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-FV","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/2599","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=2599"}],"version-history":[{"count":0,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/2599\/revisions"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=2599"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=2599"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=2599"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}