infrastructure/ansible/roles/nginx/files/nginx-https-redirect.conf

7 lines
114 B
Plaintext
Raw Normal View History

server {
listen 80;
server_name _;
access_log off;
return 308 https://$server_name$request_uri;
}