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

10 lines
135 B
Text
Raw Permalink Normal View History

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