mirror of
https://shylinux.com/x/ContextOS
synced 2025-04-25 16:58:06 +08:00
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/;
|
|
}
|
|
|