Windowsでnginxのdocument rootを設定するサンプル
対象ファイル:nginx.conf
修正前
location / {
root html;
index index.html index.htm;
}
修正後
location / {
root d:/data/www/arkgame/html;
index index.html index.htm;
}
Coding Changes the World
対象ファイル:nginx.conf
修正前
location / {
root html;
index index.html index.htm;
}
修正後
location / {
root d:/data/www/arkgame/html;
index index.html index.htm;
}