Cent OSへのNginxインストールと設定
検証環境
- さくらVPS(CentOS release 6.7)
Nginxのインストール
こちらの記事を参照。
CentOSにnginx最新をyumでインストール
Nginxの起動と自動起動設定
Nginxの設定変更
Nginxの設定ファイルは下記ディレクトリに存在する。
/etc/nginx/
このディレクトリに*.conf
ファイルを配置すると、各サーバの設定が可能である。
example.conf
server {
listen 8080;
server_name dev.example.com;
location / {
root /home/example/dev;
index index.html index.htm index.php;
}
}
Author And Source
この問題について(Cent OSへのNginxインストールと設定), 我々は、より多くの情報をここで見つけました https://qiita.com/wifeofvillon/items/a4dca22f7b19f19d0e6e著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .