Windowsでnginxのdocument rootを設定するサンプル

2017年12月16日

対象ファイル:nginx.conf
修正前
location / {
root html;
index index.html index.htm;
}

修正後
location / {
root d:/data/www/arkgame/html;
index index.html index.htm;
}

Nginx

Posted by arkgame