Nginx-Configurations/snippets/global/upgrade-http.conf
2024-11-04 15:16:55 -05:00

10 lines
No EOL
135 B
Text

server {
listen 80;
listen [::]:80;
server_name _;
location / {
return 301 https://$host$request_uri;
}
}