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