ホームページ >バックエンド開発 >PHPチュートリアル >Nginxを使用したWebページのキャッシュ

Nginxを使用したWebページのキャッシュ

WBOY
WBOYオリジナル
2016-07-29 08:51:211164ブラウズ

ここ数日間 Nginx サーバーを使用してみて、このサーバーの目的を確認しました。このサーバーを使用して、リバース プロキシやロード バランシングなどの機能を実装できることがわかりました。情報を検索すると、以下が私の Nginx 設定ファイルの設定です。 : /usr/local/nginx /conf/nginx.conf

ここでは、nginx.conf について 2 つの詳細な紹介をします:

nginx.conf の完全な構成手順

Nginx のインストールと構成ファイル nginx.conf の詳細な説明

Nginx の場所の構成の概要

以下は、nginx.conf のファイル内容です:

#用户组 用户
#user  nobody;

#工作进程,根据硬件调整
worker_processes  1;

#错误日志
#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid文件位置
#pid        logs/nginx.pid;


events {
#工作进程的最大连接数
    worker_connections  1024;
}


http {
    #设定mime类型
    include       mime.types;
    #默认文件类型
    default_type  application/octet-stream;

    #日志格式
    #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  logs/access.log  main;
    #开启高效文件传输模式,sendfile指令指定nginx是否调用sendfile函数来输出文件,
    #对于普通应用设为 on,如果用来进行下载等应用磁盘IO重负载应用,可设置为off,
    #以平衡磁盘与网络I/O处理速度,降低系统的负载。注意:如果图片显示不正常把这个改成off。
    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;
    #设置缓存路径和名称为webserver,内存缓存空间大小为200MB,30天没有被访问的内容自动清除,硬盘缓存空间大小为30GB。
    proxy_cache_path /usr/local/nginx/webserver levels=1:2 keys_z inactive=3d max_size=30g;
    server {
        #指定虚拟主机的服务端口
        listen       1025;
        #制定虚拟主机的IP地址
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;
        #自定义响应首部
        #添加一个X-Via显示服务器地址
        add_header X-Via $server_addr;
        #添加一个X-Cache显示缓存是否命中
        add_header X-Cache $upstream_cache_status;

        location / {
            #root指令用于指定虚拟主机的网页根目录,这个目录可以是相对路径,也可以是绝对路径
            root   html;
            #index用于设定访问的默认首页地址
            index  index.html index.htm;
            #设置转发的目的路径即被代理服务器的地址
            proxy_pass      http://www.jlu.edu.cn;
            #设置缓冲区的名字
            proxy_cache webserver;
            #为不同应答设置缓存时间
            proxy_cache_valid 200 10m;
        }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #设置当出现错误的时候跳转的页面
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
            proxy_pass      http://www.jlu.edu.cn;
            proxy_cache webserver;
            proxy_cache_valid 200 10m;
        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        #location ~ \.php$ {
        #    root           html;
        #    fastcgi_pass   127.0.0.1:9000;
        #    fastcgi_index  index.php;
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
        #}

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }


    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}


    # HTTPS server
    #
    #server {
    #    listen       443 ssl;
    #    server_name  localhost;

    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;

    #    ssl_session_cache    shared:SSL:1m;
    #    ssl_session_timeout  5m;

    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers  on;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}

}

上記の変更したファイルを再ロードする前に、まず /usr/local/nginx に wenserver フォルダーを作成します:

mkdir webserver

その後次のコマンドを実行します:

./nginx -s reload

次に、ブラウザにNginxのIPアドレスとポート番号を入力してWebページにアクセスします。

上記では、コンテンツの側面を含め、Web ページをキャッシュするための Nginx の使用方法を紹介しました。PHP チュートリアルに興味のある友人に役立つことを願っています。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。