Nginxを使用して独自のCDNサーバを構築する(Windows版、Linux同理)


第一歩、nginxを修正する.confプロファイル
##      ,        CPU      
worker_processes  1;

events {
    worker_connections  1024;
}
##   http    
http {
    ##      
    server {
        ##   
        listen       80;
        ##   
        server_name  localhost;
        ##   
        location D:\ {
            ##       D:
ginx-1.17.6\html\ root ,http root nginx-1.17.6\html; ## index index.html index.htm; } } }

使用Nginx搭建自己的CDN服务器(Windows版,Linux同理)_第1张图片
第二歩、先ほど指定したディレクトリ(上の画像のstatic)に内容を入れる
第3歩、サーバーを開く(起動に失敗した場合、logsディレクトリのerror.log情報を参照)
ステップ4、ブラウザアクセス(入力)http://localhost/static/js/main.js)
使用Nginx搭建自己的CDN服务器(Windows版,Linux同理)_第2张图片