forked from x/ContextOS
10 lines
151 B
Plaintext
10 lines
151 B
Plaintext
location / {
|
|
include header.conf;
|
|
if ($http_user_agent ~* "^Wget") {
|
|
proxy_pass http://contexts;
|
|
break;
|
|
}
|
|
return 302 https://$server_name/;
|
|
}
|
|
|