mirror of
https://github.com/XTLS/Xray-examples.git
synced 2025-06-28 21:26:06 +08:00
9 lines
151 B
Plaintext
9 lines
151 B
Plaintext
server
|
|
{
|
|
listen 80;
|
|
server_name _;
|
|
index index.html;
|
|
root www/nginx/html;
|
|
return 301 https://$host$request_uri; # 重定向HTTPS
|
|
}
|