2
どのようにして正しくnginxサーバーの設定を書き込むことができますか?NGINXのユーザーエージェントごとに異なるファイル
...
if the client has useragent (A) and it refers to http://somehost.domain/somefile.someextension
nginx responding a file from the root /file.zip
if the client has useragent (B) and it refers to http://somehost.domain/somefile.someextension
nginx responding a file from the root /file2.zip
if the client has useragent (C) and it refers to http://somehost.domain/somefile.someextension
nginx responding 403 error
...
私はこのコードをやった:
map $http_user_agent $browser {
"~*Firefox" "/var/www/test1";
"~*Wget" "/var/www/test2";
"~*SomeUserAgent" "/var/www/test3";
}
server {
...
root $browser
をしかし、どのように私は条件が任意のアドレスhttp://somehost.domain/somefile.someextensionに渡すのですか?