1

ローカル マシンに nginx をインストールしました。問題は、自分の Web サイトのキャッシュを作成したいということです。nginxの設定を手伝ってください

これは私の構成

サーバー { サーバー名 .mywebsite.com;

access_log /var/log/nginx/example.com.access.log;

    error_log /var/log/nginx/example.com.error.log;

root /var/www/example.com/html;

index index.php index.html index.htm;

# use fastcgi for all php files
location ~ \.php$
{
    fastcgi_pass 127.0.0.1:9000;
    fastcgi_index index.php;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    include fastcgi_params;
}

# deny access to apache .htaccess files
location ~ /\.ht
{
    deny all;
}

}

しかし、ローカルマシンには静的コンテンツがありませんでした

助けてくださいよろしくお願いします

4

0 に答える 0