infrastructure/ansible/roles/nginx/files/nginx-https-redirect.conf
Jake Howard 92052a3d0a
Unify nginx configuration
This creates a simple base configuration skeleton, that other configuration can be easily loaded into.
2023-12-16 17:47:04 +00:00

7 lines
114 B
Plaintext

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