nginx

6260 ワード

Debianは、パッケージ管理コマンドツールとしてapt-getコマンドを使用します.apt-getは、奮闘とデビアン渓列で使用される小包管理コマンドツールです.
初期作成時にアップグレードと更新が必要
apt-get -y upgrade
apt-get -y update
以上のコマンドで最新のパッケージリストを取得します.-yを真ん中に取り付けるかどうかを尋ねる人もいますが、「事前に知っておく」という選択肢があります.
apt-get -y install nginx
nginxをインストールします.
service nginx start
nginxの実行
すべてが正常なら
[ ok ] Starting nginx: nginx.
そのまま出力します.
service nginx status
上のコマンドでnginxの状態を確認できます.
[ ok ] nginx is running.
成功すればこうなる
これにより、ページが生成されます.
ローカルホストに接続されているか、接続されていない場合は、curl localhostコマンドでhtmlドキュメントを表示できます.
bash: curl: command not found
これが浮いたら.apt install curlコマンド語curlでダウンロードします.
<!DOCTYPE html>
<html>
<head>
<title>Welcome to nginx!</title>
<style>
    body {
        width: 35em;
        margin: 0 auto;
        font-family: Tahoma, Verdana, Arial, sans-serif;
    }
</style>
</head>
<body>
<h1>Welcome to nginx!</h1>
<p>If you see this page, the nginx web server is successfully installed and
working. Further configuration is required.</p>

<p>For online documentation and support please refer to
<a href="http://nginx.org/">nginx.org</a>.<br/>
Commercial support is available at
<a href="http://nginx.com/">nginx.com</a>.</p>

<p><em>Thank you for using nginx.</em></p>
</body>
</html>
こうしてhtmlコードがよく表示されます