mirror of
https://git.myvelabs.com/lab/nginx.git
synced 2025-12-17 21:26:13 +00:00
7 lines
124 B
Text
7 lines
124 B
Text
|
|
server {
|
||
|
|
listen 80;
|
||
|
|
server_name _;
|
||
|
|
if ($scheme = "http") {
|
||
|
|
return 301 https://$host$request_uri;
|
||
|
|
}
|
||
|
|
}
|