{"id":3032,"date":"2022-10-27T10:47:28","date_gmt":"2022-10-27T10:47:28","guid":{"rendered":"https:\/\/www.webhi.com\/how-to\/?p=3032"},"modified":"2022-10-27T10:47:31","modified_gmt":"2022-10-27T10:47:31","slug":"how-to-install-and-configure-nginx-on-centos-red-hat-7","status":"publish","type":"post","link":"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-nginx-on-centos-red-hat-7\/","title":{"rendered":"How to Install and Configure Nginx on CentOS\/Red Hat 7"},"content":{"rendered":"\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1200\" height=\"675\" src=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/10\/nginx_centos_en.jpg\" alt=\"How to Install and Configure Nginx on CentOS\/Red Hat 7 RHEL ALMA Linux\" class=\"wp-image-3047\" srcset=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/10\/nginx_centos_en.jpg 1200w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/10\/nginx_centos_en-300x169.jpg 300w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/10\/nginx_centos_en-1024x576.jpg 1024w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/10\/nginx_centos_en-768x432.jpg 768w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/10\/nginx_centos_en-150x84.jpg 150w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" \/><\/figure>\n\n\n\n<p>Nginx is a free, open-source, high-performance HTTP server and reverse proxy, as well as an IMAP\/POP3 proxy server. Nginx is known for its stability, rich feature set, simple configuration, and low resource consumption.<\/p>\n\n\n\n<p>This guide will show you how to install and configure Nginx on your CentOS\/Red Hat 7 server.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"installing-nginx\">Step 1 : Installing Nginx<\/h2>\n\n\n\n<p>Nginx is available in the default CentOS\/Red Hat 7 repository. To install Nginx, run the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo yum install nginx<\/code><\/pre>\n\n\n\n<p>Once the installation is complete, start the Nginx service and enable it to start automatically at boot time:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo systemctl start nginx\n$ sudo systemctl enable nginx<\/code><\/pre>\n\n\n\n<p>To check the status of the Nginx service, run the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo systemctl status nginx<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"configuring-nginx\">Step 2 : Configuring Nginx<\/h2>\n\n\n\n<p>The main Nginx configuration file is located at&nbsp;<code>\/etc\/nginx\/nginx.conf<\/code>. This file contains directives that affect the entire Nginx server.<\/p>\n\n\n\n<p>The&nbsp;<code>\/etc\/nginx\/sites-available\/<\/code>&nbsp;directory contains configuration files for virtual hosts that are available, but not yet enabled. The&nbsp;<code>\/etc\/nginx\/sites-enabled\/<\/code>&nbsp;directory contains configuration files for virtual hosts that are enabled.<\/p>\n\n\n\n<p>To create a new virtual host configuration file in the&nbsp;<code>\/etc\/nginx\/sites-available\/<\/code>&nbsp;directory, run the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo vi \/etc\/nginx\/sites-available\/example.com<\/code><\/pre>\n\n\n\n<p>Replace&nbsp;<code>example.com<\/code>&nbsp;with your domain name.<\/p>\n\n\n\n<p>Add the following lines to the file:<\/p>\n\n\n\n<pre title=\"example.com\" class=\"wp-block-code\"><code lang=\"nginx\" class=\"language-nginx\">server {\n    listen 80;\n    listen [::]:80;\n\n    root \/var\/www\/example.com;\n    index index.html;\n\n    server_name example.com www.example.com;\n\n    location \/ {\n        try_files $uri $uri\/ =404;\n    }\n}<\/code><\/pre>\n\n\n\n<p>Save and close the file.<\/p>\n\n\n\n<p>To enable the virtual host, create a symbolic link from the&nbsp;<code>\/etc\/nginx\/sites-enabled\/<\/code>&nbsp;directory to the&nbsp;<code>\/etc\/nginx\/sites-available\/<\/code>&nbsp;directory:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo ln -s \/etc\/nginx\/sites-available\/example.com \/etc\/nginx\/sites-enabled\/<\/code><\/pre>\n\n\n\n<p>To disable a virtual host, remove the symbolic link from the&nbsp;<code>\/etc\/nginx\/sites-enabled\/<\/code>&nbsp;directory:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo rm \/etc\/nginx\/sites-enabled\/example.com<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"creating-the-document-root-directory\">Step 3 : Creating the Document Root Directory<\/h2>\n\n\n\n<p>By default, the document root directory for the&nbsp;<code>default.conf<\/code>&nbsp;file is&nbsp;<code>\/usr\/share\/nginx\/html<\/code>. For virtual hosts, the document root directory is specified in the&nbsp;<code>root<\/code>&nbsp;directive.<\/p>\n\n\n\n<p>To create the document root directory for the&nbsp;<code>example.com<\/code>&nbsp;virtual host, run the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo mkdir -p \/var\/www\/example.com<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"setting-the-correct-permissions\">Setting the correct permissions<\/h3>\n\n\n\n<p>The Nginx web server runs as the&nbsp;<code>nginx<\/code>&nbsp;user. This user needs to have read and write permissions for the document root directory.<\/p>\n\n\n\n<p>To set the correct permissions, run the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo chown -R nginx:nginx \/var\/www\/example.com<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"creating-the-indexhtml-file\">Creating the index.html file<\/h3>\n\n\n\n<p>The <code>index.html<\/code> file is the default file that is served when a visitor requests a directory instead of a specific file.<\/p>\n\n\n\n<p>To create the <code>index.html<\/code> file, run the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo vi \/var\/www\/example.com\/index.html<\/code><\/pre>\n\n\n\n<p>Add the following lines to the file:<\/p>\n\n\n\n<pre title=\"index.html\" class=\"wp-block-code\"><code lang=\"markup\" class=\"language-markup\">&lt;html&gt;\n    &lt;head&gt;\n        &lt;title&gt;Welcome to Example.com!&lt;\/title&gt;\n    &lt;\/head&gt;\n    &lt;body&gt;\n        &lt;h1&gt;Success!  The example.com server block is working!&lt;\/h1&gt;\n    &lt;\/body&gt;\n&lt;\/html&gt;<\/code><\/pre>\n\n\n\n<p>Save and close the file.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"testing-your-configuration\">Step 4 : Testing your Configuration<\/h2>\n\n\n\n<p>After you have created the virtual host configuration file and the document root directory, you can test your configuration for syntax errors by running the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo nginx -t<\/code><\/pre>\n\n\n\n<p>If you get the&nbsp;<code>Syntax OK<\/code>&nbsp;message, it means that your configuration is valid.<\/p>\n\n\n\n<p>To apply the changes, run the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo systemctl restart nginx<\/code><\/pre>\n\n\n\n<p>You can now access your website at&nbsp;<code>http:\/\/example.com<\/code>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Nginx is a free, open-source, high-performance HTTP server and reverse proxy, as well as an IMAP\/POP3 proxy server. Nginx is known for its stability, rich feature set, simple configuration, and low resource consumption. This guide will show you how to install and configure Nginx on your CentOS\/Red Hat 7 server. Step 1 : Installing Nginx ..<\/p>\n<div class=\"clear-fix\"><\/div>\n<p><a href=\"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-nginx-on-centos-red-hat-7\/\" title=\"read more...\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[69,4],"tags":[],"yoast_head":"\n<title>How to Install and Configure Nginx on CentOS\/Red Hat 7 - WebHi Tutorials &amp; Documentations<\/title>\n<meta name=\"description\" content=\"This guide will show you how to install and configure Nginx web server on your CentOS\/Red Hat 7 server and test your configuration.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-nginx-on-centos-red-hat-7\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install and Configure Nginx on CentOS\/Red Hat 7 - WebHi Tutorials &amp; Documentations\" \/>\n<meta property=\"og:description\" content=\"This guide will show you how to install and configure Nginx web server on your CentOS\/Red Hat 7 server and test your configuration.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-nginx-on-centos-red-hat-7\/\" \/>\n<meta property=\"og:site_name\" content=\"WebHi Tutorials &amp; Documentations\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webhi.technology\" \/>\n<meta property=\"article:published_time\" content=\"2022-10-27T10:47:28+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-10-27T10:47:31+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/10\/nginx_centos_en.jpg\" \/>\n<meta name=\"author\" content=\"webhi\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@WebHiTechnology\" \/>\n<meta name=\"twitter:site\" content=\"@WebHiTechnology\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"webhi\" \/>\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\":\"TechArticle\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-nginx-on-centos-red-hat-7\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-nginx-on-centos-red-hat-7\/\"},\"author\":{\"name\":\"webhi\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54\"},\"headline\":\"How to Install and Configure Nginx on CentOS\/Red Hat 7\",\"datePublished\":\"2022-10-27T10:47:28+00:00\",\"dateModified\":\"2022-10-27T10:47:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-nginx-on-centos-red-hat-7\/\"},\"wordCount\":424,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#organization\"},\"articleSection\":[\"Linux system administration\",\"Web servers\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-nginx-on-centos-red-hat-7\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-nginx-on-centos-red-hat-7\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-nginx-on-centos-red-hat-7\/\",\"name\":\"How to Install and Configure Nginx on CentOS\/Red Hat 7 - WebHi Tutorials &amp; Documentations\",\"isPartOf\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#website\"},\"datePublished\":\"2022-10-27T10:47:28+00:00\",\"dateModified\":\"2022-10-27T10:47:31+00:00\",\"description\":\"This guide will show you how to install and configure Nginx web server on your CentOS\/Red Hat 7 server and test your configuration.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-nginx-on-centos-red-hat-7\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-nginx-on-centos-red-hat-7\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-nginx-on-centos-red-hat-7\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.webhi.com\/how-to\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install and Configure Nginx on CentOS\/Red Hat 7\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#website\",\"url\":\"https:\/\/www.webhi.com\/how-to\/\",\"name\":\"WebHi Tutorials &amp; Documentations\",\"description\":\"System administration and knowledge base\",\"publisher\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.webhi.com\/how-to\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#organization\",\"name\":\"WebHi Technology\",\"url\":\"https:\/\/www.webhi.com\/how-to\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png\",\"contentUrl\":\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png\",\"width\":288,\"height\":95,\"caption\":\"WebHi Technology\"},\"image\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webhi.technology\",\"https:\/\/twitter.com\/WebHiTechnology\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54\",\"name\":\"webhi\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1780005063\",\"contentUrl\":\"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1780005063\",\"caption\":\"webhi\"},\"sameAs\":[\"https:\/\/www.webhi.com\/how-to\"],\"url\":\"https:\/\/www.webhi.com\/how-to\/author\/webhi\/\"}]}<\/script>\n","yoast_head_json":{"title":"How to Install and Configure Nginx on CentOS\/Red Hat 7 - WebHi Tutorials &amp; Documentations","description":"This guide will show you how to install and configure Nginx web server on your CentOS\/Red Hat 7 server and test your configuration.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-nginx-on-centos-red-hat-7\/","og_locale":"en_US","og_type":"article","og_title":"How to Install and Configure Nginx on CentOS\/Red Hat 7 - WebHi Tutorials &amp; Documentations","og_description":"This guide will show you how to install and configure Nginx web server on your CentOS\/Red Hat 7 server and test your configuration.","og_url":"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-nginx-on-centos-red-hat-7\/","og_site_name":"WebHi Tutorials &amp; Documentations","article_publisher":"https:\/\/www.facebook.com\/webhi.technology","article_published_time":"2022-10-27T10:47:28+00:00","article_modified_time":"2022-10-27T10:47:31+00:00","og_image":[{"url":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/10\/nginx_centos_en.jpg"}],"author":"webhi","twitter_card":"summary_large_image","twitter_creator":"@WebHiTechnology","twitter_site":"@WebHiTechnology","twitter_misc":{"Written by":"webhi","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-nginx-on-centos-red-hat-7\/#article","isPartOf":{"@id":"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-nginx-on-centos-red-hat-7\/"},"author":{"name":"webhi","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54"},"headline":"How to Install and Configure Nginx on CentOS\/Red Hat 7","datePublished":"2022-10-27T10:47:28+00:00","dateModified":"2022-10-27T10:47:31+00:00","mainEntityOfPage":{"@id":"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-nginx-on-centos-red-hat-7\/"},"wordCount":424,"commentCount":0,"publisher":{"@id":"https:\/\/www.webhi.com\/how-to\/#organization"},"articleSection":["Linux system administration","Web servers"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-nginx-on-centos-red-hat-7\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-nginx-on-centos-red-hat-7\/","url":"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-nginx-on-centos-red-hat-7\/","name":"How to Install and Configure Nginx on CentOS\/Red Hat 7 - WebHi Tutorials &amp; Documentations","isPartOf":{"@id":"https:\/\/www.webhi.com\/how-to\/#website"},"datePublished":"2022-10-27T10:47:28+00:00","dateModified":"2022-10-27T10:47:31+00:00","description":"This guide will show you how to install and configure Nginx web server on your CentOS\/Red Hat 7 server and test your configuration.","breadcrumb":{"@id":"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-nginx-on-centos-red-hat-7\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-nginx-on-centos-red-hat-7\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-nginx-on-centos-red-hat-7\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.webhi.com\/how-to\/"},{"@type":"ListItem","position":2,"name":"How to Install and Configure Nginx on CentOS\/Red Hat 7"}]},{"@type":"WebSite","@id":"https:\/\/www.webhi.com\/how-to\/#website","url":"https:\/\/www.webhi.com\/how-to\/","name":"WebHi Tutorials &amp; Documentations","description":"System administration and knowledge base","publisher":{"@id":"https:\/\/www.webhi.com\/how-to\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.webhi.com\/how-to\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.webhi.com\/how-to\/#organization","name":"WebHi Technology","url":"https:\/\/www.webhi.com\/how-to\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/","url":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png","contentUrl":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png","width":288,"height":95,"caption":"WebHi Technology"},"image":{"@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webhi.technology","https:\/\/twitter.com\/WebHiTechnology"]},{"@type":"Person","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54","name":"webhi","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/image\/","url":"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1780005063","contentUrl":"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1780005063","caption":"webhi"},"sameAs":["https:\/\/www.webhi.com\/how-to"],"url":"https:\/\/www.webhi.com\/how-to\/author\/webhi\/"}]}},"_links":{"self":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/3032"}],"collection":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/comments?post=3032"}],"version-history":[{"count":14,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/3032\/revisions"}],"predecessor-version":[{"id":3091,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/3032\/revisions\/3091"}],"wp:attachment":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/media?parent=3032"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/categories?post=3032"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/tags?post=3032"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}