{"id":7226,"date":"2019-05-28T11:27:09","date_gmt":"2019-05-28T08:27:09","guid":{"rendered":"http:\/\/unihost.com\/help\/?p=7226"},"modified":"2023-01-19T13:59:50","modified_gmt":"2023-01-19T10:59:50","slug":"how-to-protect-a-server-with-fail2ban","status":"publish","type":"post","link":"https:\/\/unihost.com\/help\/how-to-protect-a-server-with-fail2ban\/","title":{"rendered":"How to protect a server with Fail2Ban"},"content":{"rendered":"<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-7229\" src=\"https:\/\/unihost.com\/help\/minio.php?.\/New-Project-2.png\" alt=\"How to protect a server with Fail2Ban - Image 1\" width=\"1280\" height=\"720\" title=\"How to protect a server with Fail2Ban - Image 1\">&nbsp;<\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">&nbsp; &nbsp;In this guide, we&#8217;ll cover how to install and use Fail2ban.<\/span><!--more--><\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Fail2Ban is a free and open source intrusion prevention software tool written in the Python programming language that can be used to protects servers from different kinds of attacks. Fail2Ban works by continuously monitoring various logs files (Apache, SSH) and running scripts based on them. Mostly it is used to block IP addresses that are trying to breach the system\u2019s security. It can be used to block any IP address that are trying to make many illegitimate login attempts. Fail2Ban is set up to block malicious IP address within a time limit defined by administrator. Fail2Ban can be configured to send email notifications when someone\u2019s attacking your server. Main purpose of Fail2ban is to scans log files for various services, such as SSH, FTP, SMTP, Apache and block the IP address that makes too many password failures.<\/span><\/p>\n<h3 id=\"install-fail2ban-on-centos-7\" style=\"text-align: center;\"><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Install Fail2ban on <\/span><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">CentOS 7<\/span><\/h3>\n<pre><em><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\"># yum update &amp;&amp; yum install epel-release<br><\/span><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\"># yum install fail2ban<\/span><\/em><br><em><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\"># systemctl enable fail2ban<\/span><\/em><\/pre>\n<h3 id=\"install-fail2ban-on-centos-7\" style=\"text-align: center;\"><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Install Fail2ban on <\/span><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Debian\/Ubuntu<\/span><\/h3>\n<p><em><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\"># apt-get update &amp;&amp; apt-get upgrade -y<\/span><\/em><\/p>\n<pre><em><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\"># apt-get install fail2ban<\/span><\/em><\/pre>\n<h3 style=\"text-align: center;\"><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Configuring Fail2ban for SSH<\/span><\/h3>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">By default Fail2ban keeps all the configuration files in&nbsp;\/etc\/fail2ban\/&nbsp;directory. The main configuration file is&nbsp;jail.conf, it contains a set of pre-defined filters. It is recommended that you should not modify&nbsp;jail.conf&nbsp;itself, but override it by creating a new configuration file&nbsp;jail.local&nbsp;inside&nbsp;\/etc\/fail2ban\/&nbsp;directory.<\/span><\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">To enable the SSH daemon jail, uncomment the following lines:<\/span><\/p>\n<pre><em><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\"># nano \/etc\/fail2ban\/jail.local&nbsp;<\/span><\/em><br><br><em><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">[sshd]\nenabled = true<\/span><\/em><\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">To ignore specific IPs, add them to the&nbsp;ignoreip&nbsp;line. By default, this command will not ban the localhost.<\/span><\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\"><em>bantime<\/em>: The length of time in seconds for which an IP is banned. If set to a negative number, the ban will be permanent. The default value of&nbsp;600&nbsp;is set to ban an IP for a 10-minute duration.<\/span><\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\"><em>findtime<\/em>: The length of time between login attempts before a ban is set. For example, if Fail2ban is set to ban an IP after five (5) failed log-in attempts, those 5 attempts must occur within the set 10-minute&nbsp;findtime&nbsp;limit. The&nbsp;findtime&nbsp;value should be a set number of seconds.<\/span><\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\"><em>maxretry<\/em>: How many attempts can be made to access the server from a single IP before a ban is imposed. The default is set to 3.<\/span><\/p>\n<pre><em><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\"># nano \/etc\/fail2ban\/jail.conf<\/span><\/em><br><br><em><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">[DEFAULT] <\/span><\/em><br><em><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">ignoreip = 127.0.0.1\/8 123.45.67.89<\/span><\/em><br><em><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">bantime  = 600\nfindtime = 600\nmaxretry = 3<\/span><\/em><\/pre>\n<h3 style=\"text-align: center;\"><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Fail2Ban for Apache\/Nginx Web Server<\/span><\/h3>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">As you can see, this method will work for any server you have in front of your real web server, or to the actual web server itself, actually this will mainly protect your port 80.<\/span><\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Edit your \/etc\/fail2ban\/jail.conf file and add this section:<\/span><\/p>\n<pre><em><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\"># nano \/etc\/fail2ban\/jail.conf<br><br>[http-get-dos]\nenabled = true\nport = http,https\nfilter = http-get-dos\nlogpath = \/var\/log\/*web_server*\/*access.log\nmaxretry = 300\nfindtime = 300\n#ban for 5 minutes\nbantime = 600\naction = iptables[name=HTTP, port=http, protocol=tcp]<\/span><\/em><\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Now we need to create the filter, to do that, create the file \/etc\/fail2ban\/filter.d\/http-get-dos.conf and copy the text below in it:<\/span><\/p>\n<pre><em><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\"># nano \/etc\/fail2ban\/filter.d\/http-get-dos.conf<br><br># Fail2Ban configuration file \n [Definition]\n# Option: failregex \n# Note: This regex will match any GET entry in your logs, so basically all valid and not valid entries are a match. \n# You should set up in the jail.conf file, the maxretry and findtime carefully in order to avoid false positives. \nfailregex = ^&lt;HOST&gt; -.*\"(GET|POST).* \n# Option: ignoreregex \nignoreregex =<\/span><\/em><\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Save the file and restart the fail2ban service:<\/span><\/p>\n<pre><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\"># systemctl restart fail2ban<\/span><\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">You can view the rules added by Fail2Ban using the following command:<br><\/span><\/p>\n<pre><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\"># iptables -L<\/span><\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">You should now be able to configure some basic banning policies for your services. Fail2ban is very easy to set up, and is a great way to protect any kind of service that uses authentication.<\/span><\/p>\n<p><\/p>\n<p><code><\/code><\/p>\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>&nbsp; &nbsp; &nbsp;In this guide, we&#8217;ll cover how to install and use Fail2ban.<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[158],"tags":[123,58,499,95,87],"class_list":["post-7226","post","type-post","status-publish","format-standard","hentry","category-dedicated-servers","tag-apache","tag-centos","tag-fail2ban","tag-nginx","tag-ssh"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to protect a server with Fail2Ban - Unihost.FAQ<\/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:\/\/unihost.com\/help\/how-to-protect-a-server-with-fail2ban\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to protect a server with Fail2Ban - Unihost.FAQ\" \/>\n<meta property=\"og:description\" content=\"&nbsp; &nbsp; &nbsp;In this guide, we&#8217;ll cover how to install and use Fail2ban.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/unihost.com\/help\/how-to-protect-a-server-with-fail2ban\/\" \/>\n<meta property=\"og:site_name\" content=\"Unihost.FAQ\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/unihost\/\" \/>\n<meta property=\"article:published_time\" content=\"2019-05-28T08:27:09+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-01-19T10:59:50+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/unihost.com\/help\/wp-content\/uploads\/New-Project-2.png\" \/>\n<meta name=\"author\" content=\"Unihost Support\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@unihost\" \/>\n<meta name=\"twitter:site\" content=\"@unihost\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Unihost Support\" \/>\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:\/\/unihost.com\/help\/how-to-protect-a-server-with-fail2ban\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/unihost.com\/help\/how-to-protect-a-server-with-fail2ban\/\"},\"author\":{\"name\":\"Unihost Support\",\"@id\":\"https:\/\/unihost.com\/help\/#\/schema\/person\/bb5ae95f38577c920e6a7507888b715a\"},\"headline\":\"How to protect a server with Fail2Ban\",\"datePublished\":\"2019-05-28T08:27:09+00:00\",\"dateModified\":\"2023-01-19T10:59:50+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/unihost.com\/help\/how-to-protect-a-server-with-fail2ban\/\"},\"wordCount\":542,\"publisher\":{\"@id\":\"https:\/\/unihost.com\/help\/#organization\"},\"image\":{\"@id\":\"https:\/\/unihost.com\/help\/how-to-protect-a-server-with-fail2ban\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/unihost.com\/help\/wp-content\/uploads\/New-Project-2.png\",\"keywords\":[\"Apache\",\"CentOS\",\"fail2ban\",\"Nginx\",\"SSH\"],\"articleSection\":[\"02. Dedicated servers\"],\"inLanguage\":\"en\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/unihost.com\/help\/how-to-protect-a-server-with-fail2ban\/\",\"url\":\"https:\/\/unihost.com\/help\/how-to-protect-a-server-with-fail2ban\/\",\"name\":\"How to protect a server with Fail2Ban - Unihost.FAQ\",\"isPartOf\":{\"@id\":\"https:\/\/unihost.com\/help\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/unihost.com\/help\/how-to-protect-a-server-with-fail2ban\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/unihost.com\/help\/how-to-protect-a-server-with-fail2ban\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/unihost.com\/help\/wp-content\/uploads\/New-Project-2.png\",\"datePublished\":\"2019-05-28T08:27:09+00:00\",\"dateModified\":\"2023-01-19T10:59:50+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/unihost.com\/help\/how-to-protect-a-server-with-fail2ban\/#breadcrumb\"},\"inLanguage\":\"en\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/unihost.com\/help\/how-to-protect-a-server-with-fail2ban\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\/\/unihost.com\/help\/how-to-protect-a-server-with-fail2ban\/#primaryimage\",\"url\":\"https:\/\/unihost.com\/help\/minio.php?.\/New-Project-2.png\",\"contentUrl\":\"https:\/\/unihost.com\/help\/minio.php?.\/New-Project-2.png\",\"width\":1280,\"height\":720},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/unihost.com\/help\/how-to-protect-a-server-with-fail2ban\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Unihost\",\"item\":\"https:\/\/unihost.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Help\",\"item\":\"https:\/\/unihost.com\/help\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How to protect a server with Fail2Ban\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/unihost.com\/help\/#website\",\"url\":\"https:\/\/unihost.com\/help\/\",\"name\":\"Unihost.FAQ\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/unihost.com\/help\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/unihost.com\/help\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/unihost.com\/help\/#organization\",\"name\":\"Unihost\",\"alternateName\":\"Unihost\",\"url\":\"https:\/\/unihost.com\/help\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\/\/unihost.com\/help\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/unihost.com\/help\/minio.php?2026\/01\/minio.png\",\"contentUrl\":\"https:\/\/unihost.com\/help\/minio.php?2026\/01\/minio.png\",\"width\":300,\"height\":300,\"caption\":\"Unihost\"},\"image\":{\"@id\":\"https:\/\/unihost.com\/help\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/unihost\/\",\"https:\/\/x.com\/unihost\",\"https:\/\/www.instagram.com\/unihost\/?hl=en\",\"https:\/\/www.linkedin.com\/company\/unihost-com\",\"https:\/\/www.youtube.com\/channel\/UCITKsxMDnslQY8brN3advgw\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/unihost.com\/help\/#\/schema\/person\/bb5ae95f38577c920e6a7507888b715a\",\"name\":\"Unihost Support\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\/\/unihost.com\/help\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/a0c9db17c2a0d93e8a0d5ac123f8c5db750ad4d3d5657369c0c4e480f5af77b8?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/a0c9db17c2a0d93e8a0d5ac123f8c5db750ad4d3d5657369c0c4e480f5af77b8?s=96&d=mm&r=g\",\"caption\":\"Unihost Support\"},\"sameAs\":[\"https:\/\/unihost.com\/\"],\"url\":\"https:\/\/unihost.com\/help\/author\/support\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to protect a server with Fail2Ban - Unihost.FAQ","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:\/\/unihost.com\/help\/how-to-protect-a-server-with-fail2ban\/","og_locale":"en_US","og_type":"article","og_title":"How to protect a server with Fail2Ban - Unihost.FAQ","og_description":"&nbsp; &nbsp; &nbsp;In this guide, we&#8217;ll cover how to install and use Fail2ban.","og_url":"https:\/\/unihost.com\/help\/how-to-protect-a-server-with-fail2ban\/","og_site_name":"Unihost.FAQ","article_publisher":"https:\/\/www.facebook.com\/unihost\/","article_published_time":"2019-05-28T08:27:09+00:00","article_modified_time":"2023-01-19T10:59:50+00:00","og_image":[{"url":"http:\/\/unihost.com\/help\/wp-content\/uploads\/New-Project-2.png","type":"","width":"","height":""}],"author":"Unihost Support","twitter_card":"summary_large_image","twitter_creator":"@unihost","twitter_site":"@unihost","twitter_misc":{"Written by":"Unihost Support","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/unihost.com\/help\/how-to-protect-a-server-with-fail2ban\/#article","isPartOf":{"@id":"https:\/\/unihost.com\/help\/how-to-protect-a-server-with-fail2ban\/"},"author":{"name":"Unihost Support","@id":"https:\/\/unihost.com\/help\/#\/schema\/person\/bb5ae95f38577c920e6a7507888b715a"},"headline":"How to protect a server with Fail2Ban","datePublished":"2019-05-28T08:27:09+00:00","dateModified":"2023-01-19T10:59:50+00:00","mainEntityOfPage":{"@id":"https:\/\/unihost.com\/help\/how-to-protect-a-server-with-fail2ban\/"},"wordCount":542,"publisher":{"@id":"https:\/\/unihost.com\/help\/#organization"},"image":{"@id":"https:\/\/unihost.com\/help\/how-to-protect-a-server-with-fail2ban\/#primaryimage"},"thumbnailUrl":"http:\/\/unihost.com\/help\/wp-content\/uploads\/New-Project-2.png","keywords":["Apache","CentOS","fail2ban","Nginx","SSH"],"articleSection":["02. Dedicated servers"],"inLanguage":"en"},{"@type":"WebPage","@id":"https:\/\/unihost.com\/help\/how-to-protect-a-server-with-fail2ban\/","url":"https:\/\/unihost.com\/help\/how-to-protect-a-server-with-fail2ban\/","name":"How to protect a server with Fail2Ban - Unihost.FAQ","isPartOf":{"@id":"https:\/\/unihost.com\/help\/#website"},"primaryImageOfPage":{"@id":"https:\/\/unihost.com\/help\/how-to-protect-a-server-with-fail2ban\/#primaryimage"},"image":{"@id":"https:\/\/unihost.com\/help\/how-to-protect-a-server-with-fail2ban\/#primaryimage"},"thumbnailUrl":"http:\/\/unihost.com\/help\/wp-content\/uploads\/New-Project-2.png","datePublished":"2019-05-28T08:27:09+00:00","dateModified":"2023-01-19T10:59:50+00:00","breadcrumb":{"@id":"https:\/\/unihost.com\/help\/how-to-protect-a-server-with-fail2ban\/#breadcrumb"},"inLanguage":"en","potentialAction":[{"@type":"ReadAction","target":["https:\/\/unihost.com\/help\/how-to-protect-a-server-with-fail2ban\/"]}]},{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/unihost.com\/help\/how-to-protect-a-server-with-fail2ban\/#primaryimage","url":"https:\/\/unihost.com\/help\/minio.php?.\/New-Project-2.png","contentUrl":"https:\/\/unihost.com\/help\/minio.php?.\/New-Project-2.png","width":1280,"height":720},{"@type":"BreadcrumbList","@id":"https:\/\/unihost.com\/help\/how-to-protect-a-server-with-fail2ban\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Unihost","item":"https:\/\/unihost.com\/"},{"@type":"ListItem","position":2,"name":"Help","item":"https:\/\/unihost.com\/help\/"},{"@type":"ListItem","position":3,"name":"How to protect a server with Fail2Ban"}]},{"@type":"WebSite","@id":"https:\/\/unihost.com\/help\/#website","url":"https:\/\/unihost.com\/help\/","name":"Unihost.FAQ","description":"","publisher":{"@id":"https:\/\/unihost.com\/help\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/unihost.com\/help\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en"},{"@type":"Organization","@id":"https:\/\/unihost.com\/help\/#organization","name":"Unihost","alternateName":"Unihost","url":"https:\/\/unihost.com\/help\/","logo":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/unihost.com\/help\/#\/schema\/logo\/image\/","url":"https:\/\/unihost.com\/help\/minio.php?2026\/01\/minio.png","contentUrl":"https:\/\/unihost.com\/help\/minio.php?2026\/01\/minio.png","width":300,"height":300,"caption":"Unihost"},"image":{"@id":"https:\/\/unihost.com\/help\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/unihost\/","https:\/\/x.com\/unihost","https:\/\/www.instagram.com\/unihost\/?hl=en","https:\/\/www.linkedin.com\/company\/unihost-com","https:\/\/www.youtube.com\/channel\/UCITKsxMDnslQY8brN3advgw"]},{"@type":"Person","@id":"https:\/\/unihost.com\/help\/#\/schema\/person\/bb5ae95f38577c920e6a7507888b715a","name":"Unihost Support","image":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/unihost.com\/help\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/a0c9db17c2a0d93e8a0d5ac123f8c5db750ad4d3d5657369c0c4e480f5af77b8?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a0c9db17c2a0d93e8a0d5ac123f8c5db750ad4d3d5657369c0c4e480f5af77b8?s=96&d=mm&r=g","caption":"Unihost Support"},"sameAs":["https:\/\/unihost.com\/"],"url":"https:\/\/unihost.com\/help\/author\/support\/"}]}},"_links":{"self":[{"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/posts\/7226","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/comments?post=7226"}],"version-history":[{"count":11,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/posts\/7226\/revisions"}],"predecessor-version":[{"id":9762,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/posts\/7226\/revisions\/9762"}],"wp:attachment":[{"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/media?parent=7226"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/categories?post=7226"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/tags?post=7226"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}