You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
ansible-role-nginx/templates/default-catchall.j2

8 lines
217 B

server {
listen 80 default_server;
listen 443 ssl default_server;
server_name _;
ssl_certificate {{ nginx_catchall_fullchain }};
ssl_certificate_key {{ nginx_catchall_privkey }};
return 444;
}