サーバー上の2つの異なるフォルダーにサブドメインのルートURLとサブドメインのディレクトリを提供しようとしています。これが私が持っている簡単な設定で、機能していません...
server {
index index.html index.htm;
server_name test.example.com;
location / {
root /web/test.example.com/www;
}
location /static {
root /web/test.example.com/static;
}
}
この例でtest.example.com/
は、インデックスファイルを/web/test.example.com/www
とに行くことtest.example.com/static
で、インデックスファイルをもたらします/web/test.example.com/static
alias
。ユーザーが記入したコミュニティWikiではなく、公式ドキュメントを読んでください。引用:場所がディレクティブの値の最後の部分と一致する場合は、ルートディレクティブを使用することをお勧めします。