{"id":107,"date":"2023-01-11T12:26:41","date_gmt":"2023-01-11T12:26:41","guid":{"rendered":"https:\/\/alavps.com\/blog\/?p=107"},"modified":"2023-01-11T12:26:41","modified_gmt":"2023-01-11T12:26:41","slug":"cpanel-security-best-firewall-rules","status":"publish","type":"post","link":"https:\/\/alavps.com\/blog\/cpanel-security-best-firewall-rules\/","title":{"rendered":"cPanel Security &#8211; 11 Codes To safe Guard Your cPanel in 2023"},"content":{"rendered":"<div id=\"bsf_rt_marker\"><\/div><h2><span class=\"ez-toc-section\" id=\"Introduction\"><\/span>Introduction:<span class=\"ez-toc-section-end\"><\/span><\/h2><div id=\"ez-toc-container\" class=\"ez-toc-v2_0_81 counter-hierarchy ez-toc-counter ez-toc-grey ez-toc-container-direction\">\n<p class=\"ez-toc-title\" style=\"cursor:inherit\">Table of Contents<\/p>\n<label for=\"ez-toc-cssicon-toggle-item-69dafc090cc3b\" class=\"ez-toc-cssicon-toggle-label\"><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><\/label><input type=\"checkbox\"  id=\"ez-toc-cssicon-toggle-item-69dafc090cc3b\"  aria-label=\"Toggle\" \/><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:\/\/alavps.com\/blog\/cpanel-security-best-firewall-rules\/#Introduction\" >Introduction:<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-2\" href=\"https:\/\/alavps.com\/blog\/cpanel-security-best-firewall-rules\/#cPanel_Security_Firewall_Rules\" >cPanel Security Firewall Rules<\/a><\/li><\/ul><\/nav><\/div>\n\n<p>cPanel is a well-known web hosting control panel that offers a simple interface for operating a web server. Securing a cPanel server is a critical chore for every site administrator in order to safeguard the server from any security risks. A firewall may be used to restrict undesirable traffic on a cPanel server. Best practices for establishing firewall rules on a cPanel server are as follows:<\/p>\n<p>Except for those required for the server to function correctly, block all incoming traffic on all ports. This may be accomplished by implementing a firewall rule that drops all incoming traffic on all ports save those specifically approved.<\/p>\n<p>Allow incoming web traffic on ports 80 (HTTP) and 443 (HTTPS). Users will be able to access the website housed on the server as a result.<\/p>\n<p>Allow inbound file transfer traffic on port 21 (FTP). Users will be able to upload and download files to the server as a result.<\/p>\n<p>Allow incoming SSH traffic on port 22 for remote administration. This enables the administrator to connect in to the server remotely and do server administration operations.<\/p>\n<p>Allow inbound domain name resolution communication on port 53 (DNS). This enables the server to resolve domain names and connect to websites.<\/p>\n<p>To prevent unauthorized access to the server, block all incoming traffic on all other ports.<\/p>\n<p>IPtables firewall rules can be used to block incoming and outgoing traffic from known malicious IP addresses or IP ranges.<\/p>\n<p>Maintain firewall rules and check logs for any unusual behavior.<\/p>\n<h2><img decoding=\"async\" class=\"size-full wp-image-110 aligncenter lazyload\" data-src=\"https:\/\/alavps.com\/blog\/wp-content\/uploads\/2023\/01\/Securing-cPanel.png\" alt=\"cPanel Security\" width=\"769\" height=\"419\" data-srcset=\"https:\/\/alavps.com\/blog\/wp-content\/uploads\/2023\/01\/Securing-cPanel.png 769w, https:\/\/alavps.com\/blog\/wp-content\/uploads\/2023\/01\/Securing-cPanel-300x163.png 300w\" data-sizes=\"(max-width: 769px) 100vw, 769px\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 769px; --smush-placeholder-aspect-ratio: 769\/419;\" \/><\/h2>\n<h2><span class=\"ez-toc-section\" id=\"cPanel_Security_Firewall_Rules\"><\/span>cPanel Security Firewall Rules<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>Here&#8217;s an example of iptables firewall rules that might be used to put these best practices into action:<\/p>\n<pre><code>\r\n# Flush all existing rules\r\niptables -F\r\n\r\n# Block all incoming traffic on all ports\r\niptables -P INPUT DROP\r\n\r\n# Allow incoming traffic on port 80 (HTTP) and 443 (HTTPS)\r\niptables -A INPUT -p tcp --dport 80 -j ACCEPT\r\niptables -A INPUT -p tcp --dport 443 -j ACCEPT\r\n\r\n# Allow incoming traffic on port 21 (FTP)\r\niptables -A INPUT -p tcp --dport 21 -j ACCEPT\r\n\r\n# Allow incoming traffic on port 22 (SSH)\r\niptables -A INPUT -p tcp --dport 22 -j ACCEPT\r\n\r\n# Allow incoming traffic on port 53 (DNS)\r\niptables -A INPUT -p udp --dport 53 -j ACCEPT\r\niptables -A INPUT -p tcp --dport 53 -j ACCEPT\r\n\r\n# Allow incoming traffic on loopback interface\r\niptables -A INPUT -i lo -j ACCEPT\r\n\r\n# Allow all outgoing traffic\r\niptables -P OUTPUT ACCEPT\r\n\r\n# Allow established connections\r\niptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT\r\n\r\n# Block incoming traffic from known malicious IP addresses or IP ranges\r\niptables -A INPUT -s  -j DROP\r\n\r\n# Save the firewall rules\r\niptables-save\r\n<\/code><\/pre>\n<p><strong>Conclusion:<\/strong><\/p>\n<p>It is vital to remember that these are only samples and that you should modify them to meet your individual needs and test them before implementing them on production systems. Firewall rules should be examined and changed on a regular basis to ensure that they are still effective in blocking harmful traffic. Monitoring server logs for unusual behavior is also a vital step in identifying and avoiding possible security issues.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction: cPanel is a well-known web hosting control panel that offers a simple interface for operating a web server. Securing a cPanel server is a critical chore for every site administrator in order to safeguard the server from any security risks. A firewall may be used to restrict undesirable traffic on a cPanel server. Best [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":110,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[12],"tags":[],"class_list":["post-107","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-security-tips"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>cPanel Security - 11 Codes To safe Guard Your cPanel in 2023 - Alavps Blog<\/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:\/\/alavps.com\/blog\/cpanel-security-best-firewall-rules\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"cPanel Security - 11 Codes To safe Guard Your cPanel in 2023 - Alavps Blog\" \/>\n<meta property=\"og:description\" content=\"Introduction: cPanel is a well-known web hosting control panel that offers a simple interface for operating a web server. Securing a cPanel server is a critical chore for every site administrator in order to safeguard the server from any security risks. A firewall may be used to restrict undesirable traffic on a cPanel server. Best [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/alavps.com\/blog\/cpanel-security-best-firewall-rules\/\" \/>\n<meta property=\"og:site_name\" content=\"Alavps Blog\" \/>\n<meta property=\"article:published_time\" content=\"2023-01-11T12:26:41+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/alavps.com\/blog\/wp-content\/uploads\/2023\/01\/Securing-cPanel.png\" \/>\n\t<meta property=\"og:image:width\" content=\"769\" \/>\n\t<meta property=\"og:image:height\" content=\"419\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"alavpsblog\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"alavpsblog\" \/>\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:\/\/alavps.com\/blog\/cpanel-security-best-firewall-rules\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/alavps.com\/blog\/cpanel-security-best-firewall-rules\/\"},\"author\":{\"name\":\"alavpsblog\",\"@id\":\"https:\/\/alavps.com\/blog\/#\/schema\/person\/67433f2932ad1e398db0b282cc965644\"},\"headline\":\"cPanel Security &#8211; 11 Codes To safe Guard Your cPanel in 2023\",\"datePublished\":\"2023-01-11T12:26:41+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/alavps.com\/blog\/cpanel-security-best-firewall-rules\/\"},\"wordCount\":347,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/alavps.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/alavps.com\/blog\/cpanel-security-best-firewall-rules\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/alavps.com\/blog\/wp-content\/uploads\/2023\/01\/Securing-cPanel.png\",\"articleSection\":[\"security tips\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/alavps.com\/blog\/cpanel-security-best-firewall-rules\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/alavps.com\/blog\/cpanel-security-best-firewall-rules\/\",\"url\":\"https:\/\/alavps.com\/blog\/cpanel-security-best-firewall-rules\/\",\"name\":\"cPanel Security - 11 Codes To safe Guard Your cPanel in 2023 - Alavps Blog\",\"isPartOf\":{\"@id\":\"https:\/\/alavps.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/alavps.com\/blog\/cpanel-security-best-firewall-rules\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/alavps.com\/blog\/cpanel-security-best-firewall-rules\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/alavps.com\/blog\/wp-content\/uploads\/2023\/01\/Securing-cPanel.png\",\"datePublished\":\"2023-01-11T12:26:41+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/alavps.com\/blog\/cpanel-security-best-firewall-rules\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/alavps.com\/blog\/cpanel-security-best-firewall-rules\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/alavps.com\/blog\/cpanel-security-best-firewall-rules\/#primaryimage\",\"url\":\"https:\/\/alavps.com\/blog\/wp-content\/uploads\/2023\/01\/Securing-cPanel.png\",\"contentUrl\":\"https:\/\/alavps.com\/blog\/wp-content\/uploads\/2023\/01\/Securing-cPanel.png\",\"width\":769,\"height\":419,\"caption\":\"cPanel Security\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/alavps.com\/blog\/cpanel-security-best-firewall-rules\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/alavps.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"cPanel Security &#8211; 11 Codes To safe Guard Your cPanel in 2023\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/alavps.com\/blog\/#website\",\"url\":\"https:\/\/alavps.com\/blog\/\",\"name\":\"Alavps\",\"description\":\"All About VPS &amp; Hosting\",\"publisher\":{\"@id\":\"https:\/\/alavps.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/alavps.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/alavps.com\/blog\/#organization\",\"name\":\"Alavps\",\"url\":\"https:\/\/alavps.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/alavps.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/alavps.com\/blog\/wp-content\/uploads\/2020\/03\/cropped-logo.png\",\"contentUrl\":\"https:\/\/alavps.com\/blog\/wp-content\/uploads\/2020\/03\/cropped-logo.png\",\"width\":225,\"height\":44,\"caption\":\"Alavps\"},\"image\":{\"@id\":\"https:\/\/alavps.com\/blog\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/alavps.com\/blog\/#\/schema\/person\/67433f2932ad1e398db0b282cc965644\",\"name\":\"alavpsblog\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/8b3790daa42781f4c339d739e7ca7b1a944f02d59a994fad72790b42612ff000?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/8b3790daa42781f4c339d739e7ca7b1a944f02d59a994fad72790b42612ff000?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/8b3790daa42781f4c339d739e7ca7b1a944f02d59a994fad72790b42612ff000?s=96&d=mm&r=g\",\"caption\":\"alavpsblog\"},\"url\":\"https:\/\/alavps.com\/blog\/author\/alavpsblog\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"cPanel Security - 11 Codes To safe Guard Your cPanel in 2023 - Alavps Blog","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:\/\/alavps.com\/blog\/cpanel-security-best-firewall-rules\/","og_locale":"en_US","og_type":"article","og_title":"cPanel Security - 11 Codes To safe Guard Your cPanel in 2023 - Alavps Blog","og_description":"Introduction: cPanel is a well-known web hosting control panel that offers a simple interface for operating a web server. Securing a cPanel server is a critical chore for every site administrator in order to safeguard the server from any security risks. A firewall may be used to restrict undesirable traffic on a cPanel server. Best [&hellip;]","og_url":"https:\/\/alavps.com\/blog\/cpanel-security-best-firewall-rules\/","og_site_name":"Alavps Blog","article_published_time":"2023-01-11T12:26:41+00:00","og_image":[{"width":769,"height":419,"url":"https:\/\/alavps.com\/blog\/wp-content\/uploads\/2023\/01\/Securing-cPanel.png","type":"image\/png"}],"author":"alavpsblog","twitter_card":"summary_large_image","twitter_misc":{"Written by":"alavpsblog","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/alavps.com\/blog\/cpanel-security-best-firewall-rules\/#article","isPartOf":{"@id":"https:\/\/alavps.com\/blog\/cpanel-security-best-firewall-rules\/"},"author":{"name":"alavpsblog","@id":"https:\/\/alavps.com\/blog\/#\/schema\/person\/67433f2932ad1e398db0b282cc965644"},"headline":"cPanel Security &#8211; 11 Codes To safe Guard Your cPanel in 2023","datePublished":"2023-01-11T12:26:41+00:00","mainEntityOfPage":{"@id":"https:\/\/alavps.com\/blog\/cpanel-security-best-firewall-rules\/"},"wordCount":347,"commentCount":0,"publisher":{"@id":"https:\/\/alavps.com\/blog\/#organization"},"image":{"@id":"https:\/\/alavps.com\/blog\/cpanel-security-best-firewall-rules\/#primaryimage"},"thumbnailUrl":"https:\/\/alavps.com\/blog\/wp-content\/uploads\/2023\/01\/Securing-cPanel.png","articleSection":["security tips"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/alavps.com\/blog\/cpanel-security-best-firewall-rules\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/alavps.com\/blog\/cpanel-security-best-firewall-rules\/","url":"https:\/\/alavps.com\/blog\/cpanel-security-best-firewall-rules\/","name":"cPanel Security - 11 Codes To safe Guard Your cPanel in 2023 - Alavps Blog","isPartOf":{"@id":"https:\/\/alavps.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/alavps.com\/blog\/cpanel-security-best-firewall-rules\/#primaryimage"},"image":{"@id":"https:\/\/alavps.com\/blog\/cpanel-security-best-firewall-rules\/#primaryimage"},"thumbnailUrl":"https:\/\/alavps.com\/blog\/wp-content\/uploads\/2023\/01\/Securing-cPanel.png","datePublished":"2023-01-11T12:26:41+00:00","breadcrumb":{"@id":"https:\/\/alavps.com\/blog\/cpanel-security-best-firewall-rules\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/alavps.com\/blog\/cpanel-security-best-firewall-rules\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/alavps.com\/blog\/cpanel-security-best-firewall-rules\/#primaryimage","url":"https:\/\/alavps.com\/blog\/wp-content\/uploads\/2023\/01\/Securing-cPanel.png","contentUrl":"https:\/\/alavps.com\/blog\/wp-content\/uploads\/2023\/01\/Securing-cPanel.png","width":769,"height":419,"caption":"cPanel Security"},{"@type":"BreadcrumbList","@id":"https:\/\/alavps.com\/blog\/cpanel-security-best-firewall-rules\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/alavps.com\/blog\/"},{"@type":"ListItem","position":2,"name":"cPanel Security &#8211; 11 Codes To safe Guard Your cPanel in 2023"}]},{"@type":"WebSite","@id":"https:\/\/alavps.com\/blog\/#website","url":"https:\/\/alavps.com\/blog\/","name":"Alavps","description":"All About VPS &amp; Hosting","publisher":{"@id":"https:\/\/alavps.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/alavps.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/alavps.com\/blog\/#organization","name":"Alavps","url":"https:\/\/alavps.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/alavps.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/alavps.com\/blog\/wp-content\/uploads\/2020\/03\/cropped-logo.png","contentUrl":"https:\/\/alavps.com\/blog\/wp-content\/uploads\/2020\/03\/cropped-logo.png","width":225,"height":44,"caption":"Alavps"},"image":{"@id":"https:\/\/alavps.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/alavps.com\/blog\/#\/schema\/person\/67433f2932ad1e398db0b282cc965644","name":"alavpsblog","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/8b3790daa42781f4c339d739e7ca7b1a944f02d59a994fad72790b42612ff000?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/8b3790daa42781f4c339d739e7ca7b1a944f02d59a994fad72790b42612ff000?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/8b3790daa42781f4c339d739e7ca7b1a944f02d59a994fad72790b42612ff000?s=96&d=mm&r=g","caption":"alavpsblog"},"url":"https:\/\/alavps.com\/blog\/author\/alavpsblog\/"}]}},"_links":{"self":[{"href":"https:\/\/alavps.com\/blog\/wp-json\/wp\/v2\/posts\/107","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/alavps.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/alavps.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/alavps.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/alavps.com\/blog\/wp-json\/wp\/v2\/comments?post=107"}],"version-history":[{"count":3,"href":"https:\/\/alavps.com\/blog\/wp-json\/wp\/v2\/posts\/107\/revisions"}],"predecessor-version":[{"id":111,"href":"https:\/\/alavps.com\/blog\/wp-json\/wp\/v2\/posts\/107\/revisions\/111"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/alavps.com\/blog\/wp-json\/wp\/v2\/media\/110"}],"wp:attachment":[{"href":"https:\/\/alavps.com\/blog\/wp-json\/wp\/v2\/media?parent=107"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/alavps.com\/blog\/wp-json\/wp\/v2\/categories?post=107"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/alavps.com\/blog\/wp-json\/wp\/v2\/tags?post=107"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}