Nginx静的Webサイトの構築


1インストールNginxはCentOS上で、yumを直接使用してNginxをインストールすることができます
yum install nginx -y

2インストールが完了したら、nginxコマンドを使用してNginxを起動します.
nginx

127.0.0.1:80を開いて、Nginxのインストールに成功したかどうかを確認できます.
3静的サーバアクセスパスを構成する外部ネットワークユーザアクセスサーバのWebサービスは、urlを介してサーバ上の静的リソースに正しくアクセスするには、静的サーバアクセスパス情報を構成する必要があるNginxによって提供される.Nginxのデフォルトプロファイル/etc/nginx/nginx.confを開き、Nginx構成を変更し、デフォルトのroot/usr/share/nginx/htmlを変更します.変更:root/data/www;ファイルの構成は次のとおりです.
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;

include /usr/share/nginx/modules/*.conf;

events {
    worker_connections 1024;
}

http {
    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  /var/log/nginx/access.log  main;

    sendfile            on;
    tcp_nopush          on;
    tcp_nodelay         on;
    keepalive_timeout   65;
    types_hash_max_size 2048;

    include             /etc/nginx/mime.types;
    default_type        application/octet-stream;

    include /etc/nginx/conf.d/*.conf;

    server {
        listen       80 default_server;
        listen       [::]:80 default_server;
        server_name  _;
        root         /data/www;

        include /etc/nginx/default.d/*.conf;

        location / {
        }

        error_page 404 /404.html;
            location = /40x.html {
        }

        error_page 500 502 503 504 /50x.html;
            location = /50x.html {
        }
    }

}

4 nginxプロファイルを再起動し、/data/www/staticをすべての静的リソース要求のルートパスとして使用します.たとえば、アクセス:http://127.0.0.1/static/index.jsを選択すると、/data/www/static/ディレクトリに行ってindex.jsを検索します.次のように、Nginxを再起動して新しい構成を有効にする必要があります.
nginx -s reload

5再起動後、静的サーバを使用できるようになりました.次に、サービスが正常に動作しているかどうかを確認する静的ファイルを新規作成します.まず、/dataディレクトリの下にwwwディレクトリを作成します.次に例を示します.
mkdir -p /data/www

6最初の静的ファイルを作成/data/wwwディレクトリの下で最初の静的ファイルindex.htmlを作成
index.htmlコードは次のとおりです.

<html lang="zh">
<head>
    <meta charset="UTF-8">
    <title>       title>
head>
<body>
Hello world!
body>
html>

現在アクセスhttp://127.0.0.1/index.html ページ出力ハローワールドが見えるはず!
すべてが終わる!
注意:もしあなたのサーバーがパブリックネットワークのサーバーであれば、80ポートは必ずしもアクセスできるとは限らないので、セキュリティグループに行ってポリシーを設定し、80ポートをオープンしてからアクセスできます.