2014-10-01から1ヶ月間の記事一覧

Algorithm Practice : Bubble Sort and Merge Sort.

Motivation Recently I take small tests on line like below. But I'm not good at actually.. paiza [パイザ] | IT/WEBエンジニアのためのコーディング転職サイト ITプログラマー・エンジニア転職のpaiza Understanding Algorithm is a kind of required s…

How to redirect to a URL in Nginx

Spec CentOS release 6.5 (Final) on Azure VM nginx version: nginx/1.6.2 How to $ sudo vim /etc/nginx/conf.d/hoge.conf server { .... server_name hoge.com .... } server { listen 80; server_name hoge.cloudapp.net; rewrite ^ http://hoge.com; } …

Nginx + MariaDB + Wordpress on CentOS6.5 (Azure VM)

Migrated a wordpress site from Sakura VPS to Microsoft Azure with changing web server from Apache to Nginx and database from MySQL to MariaDB. This is a How-To article step by step. Tech Involved with version CentOS release 6.5 (Final) PHP…