mirror of
https://github.com/v2fly/v2ray-examples.git
synced 2025-04-05 02:19:30 +08:00
9 lines
134 B
Plaintext
9 lines
134 B
Plaintext
server
|
|
{
|
|
listen 80;
|
|
server_name _;
|
|
index index.html;
|
|
root www/nginx/html;
|
|
return 301 https://$host$request_uri;
|
|
}
|