1 / 3

Semalt Conveys Crucial Information On How To Block Referrer Spam Using Nginx

Semalt, semalt SEO, Semalt SEO Tips, Semalt Agency, Semalt SEO Agency, Semalt SEO services, web design, web development, site promotion, analytics, SMM, Digital marketing

sp79
Download Presentation

Semalt Conveys Crucial Information On How To Block Referrer Spam Using Nginx

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. 23.05.2018 Semalt Conveys Crucial Information On How To Block Referrer Spam Using Nginx When digging into your analytics software looking for opportunities and ideas, you may have come across some referral spams. These referrals have been in existence for quite a long time, but Darodar has taken them to another level. Ivan Konovalov, the Semalt Customer Success Manager, says that Darodar is a bogus SEO tool, which has hijacked the botnet. It came up with a new way of advertisement where it uses a strategy whereby your website will be ?ooded by different IPs, countries and even devices at different times but all of them will have the same referral. They hope that as soon as you notice this suspicious traf?c, you'll want to investigate more about it and in the long run, you will purchase their products. When Darodar succeeded with this type of advertisement, most websites started using referral spam, and it has reached a point of corrupting and distorting the website analytics. It has become one of the major website https://rankexperience.com/articles/article2010.html 1/3

  2. 23.05.2018 offenders. Why is referrer spam becoming an issue? Other than distorting and corrupting your site with irrelevant data, spam is a big waste of time. Most people complain about how frustrating this can be when trying to explain about Darodar to customers and why they should ignore it. Although it is possible to create a ?lter using Google Analytics to help in ?ltering out the referrer spammers, the only thing this solution does is masking the problem. Once spammers crawl or visit your site, they start using your server's resources, yet they are not things that you need. Loading your server means it becomes slow to load, which can lead to high bounce rates and poor rankings. The key to stopping this issue is to block it before it gets a chance to register on your website as a referrer. There are different ways to achieve this goal, and one of them is to use nginx. Just follow the steps below: Create the following global nginx rules directory: sudo mkdr/etc/nginx/global sudonano/etc/nginx/global/referee spam. conf After creating the directory, paste the text below in the editor, then save it and exit; ## # Referrer exclusions ## if ($http_referer ~ " (semalt\.com|buttons-for-website\.com) ") { set $prohibited "1"; } if ($prohibited) { return 403;-+ } These steps will help you in detecting and blocking button for website.com and darodar.com. These two are the major website offenders, but you can still block any other referral spam that you wish. The consistent expression syntax takes the hostname, emit the periods with a backline and join them with a bar. To the site's con?guration ?le, add; https://rankexperience.com/articles/article2010.html 2/3

  3. 23.05.2018 Server { ... all the stuff that is already ... include/etc/nginx/global/* } Repeating this process can be boring since you have to do it for each site, but the goog thing is that you can use it again in future by adding new global directories in /etc/nginx/global/directory. If your website has a template ?le, it will be great if you add the line to it. To ensure that there are no typing errors by following this: Sudo nginx –t, then reload Nginx con?g, and from here, your site will be good to go. https://rankexperience.com/articles/article2010.html 3/3

More Related