Nginx-Configurations/snippets/global/upgrade-http.conf

10 lines
135 B
Text
Raw Normal View History

2024-11-04 13:52:16 -06:00
server {
listen 80;
listen [::]:80;
server_name *;
location / {
return 301 https://$host$request_uri;
}
}