nginxのインストール
CentOSならば、yumでインストールできた。
$ yum install nginx
起動し、chkconfigを on にしておく。
$ service nginx start
$ chkconfig nginx on
configファイルは下記
$ vi /etc/nginx/nginx.conf
/etc/nginx/conf.d/default.conf
$ vi /etc/nginx/conf.d/default.conf
server {
listen 80;
server_name hostname; #ホスト名を設定
location / {
root /var/www/hostname; #ドキュメントルート
index index.html index.htm;
}
}