Posts

Showing posts with the label Nginx

How to Protect Site from Clickjacking Attack in Nginx

Image
This time i will review about Protect site from clickjacking attact in nginx , or also known as "UI redress attact" are attacks that utilize transparent layer which aims to trick so that when the user clicks a button or a link on other sites such as the original site. And then the attacker intended to hijack the site by routing them to another site, most likely owned by another application, domain, or both. A common technique they do is with iframe technique. Nginx This article I will give some tips and tricks about securing your site for users Nginx. By utilizing the function of the X-Frame-Options header site. Preparation Make sure you have installed Nginx on your server. Then go to Settings in: For Users Debian/Ubuntu: $ sudo nano /etc/nginx/sites-availables/default For Users Fedora/CentOS/RHEL: $ sudo vi /etc/nginx/nginx.conf Then add: server { ... add_header X-Frame-Options "SAMEORIGIN"; ... } See the picture b...

What is Mysql, Apache, PhpMyAdmin, XAMPP and Nginx?

Image
In terms of making the web or computer program, you've heard those words, then what's the difference? See the following reviews. MySQL MySQL is a multithreaded, multi-user, SQL (Structured Query Language) Server Relational Database (RDBMS). MySQL is the database servers that can accommodate up to hundreds of gigabytes of records. With these capabilities, the application to be made all the more powerful when combined with PHP. MySQL-PHP so couples often called the Dynamic Duo. MySQL is popular for web applications such as PHP-Nuke, Mambo, Joomla and so forth. Initially MySQL running on Linux and Unix operating systems. But for fans of Windows is also available MySQL version of its Windows that can be downloaded directly from its website (http://www.mysql.com/downloads) . Apache Every time a browser connects to a Web site on the internet, it connects to the Web server. The server listens for requests on the network and responds to the request with specific d...