configurations/Nginx/Server Blocks/http-redirect.conf

8 lines
90 B
Plaintext
Raw Permalink Normal View History

server {
2021-05-01 15:13:49 -04:00
listen 80;
2022-02-10 21:08:37 -05:00
listen [::]:80;
2021-05-01 15:13:49 -04:00
return 301 https://$host$request_uri;
}