mirror of
https://github.com/SpaceTimee/Cealing-Host.git
synced 2025-07-13 12:52:38 +08:00
16 lines
335 B
Nginx Configuration File
16 lines
335 B
Nginx Configuration File
http {
|
|
server {
|
|
server_name *.googlevideo.com;
|
|
listen 443 ssl;
|
|
ssl_certificate Cealing-Cert.pem;
|
|
ssl_certificate_key Cealing-Key.pem;
|
|
proxy_ssl_name E0;
|
|
resolver 223.5.5.5 ipv4=off;
|
|
|
|
location / {
|
|
if ($http_host ~* ^(.+).googlevideo.com$) {
|
|
proxy_pass https://$1.gvt1.com;
|
|
}
|
|
}
|
|
}
|
|
} |