Showing posts with label Wordpress. Show all posts
Showing posts with label Wordpress. Show all posts

Saturday, July 13, 2013

How to Protect wp-admin Wordpress with Nginx on CentOS

How to Protect wp-admin Wordpress with Nginx on CentOS




This is tutorial how to protect wp-admin wordpress with Nginx on CentOS to securing your wp-admin area by limiting IP access.
Edit Nginx Vhost configuration file:

# nano /etc/nginx/conf.d/yourvhost.conf
Drop these lines into nginx vhost config file:

location /wp-admin/ {
error_page 403 http://yourdomain.com/;

allow 1.2.3.4;
deny all;
}
Change 1.2.3.4 with your ip to access WordPress

Sunday, July 7, 2013

How to Install Wordpress on CentOS 5

How to Install Wordpress on CentOS 5




This is tutorial how to install wordpress on centOS 5 VPS 32bit

Before intalling wordpress on centOS 5, wordPress needs web server (Nginx) with PHP (php-fpm) and MySQL database :

Install Nginx and PHP-FPM
Install MySQL
Setup Nginx VirtualHost

Download Wordpress latest version

# wget http://wordpress.org/latest.zip
Extract/unzip WordPress Package

# unzip latest.zip
Move to web root