bundlewrap/bundles/nginx/files/port80.conf
Franzi 44d42de81c
All checks were successful
bundlewrap/pipeline/head This commit looks good
bundles/nginx: only redirect to ssl for sites which actually have ssl enabled
2021-04-25 09:20:16 +02:00

10 lines
152 B
Plaintext

server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
location / {
return 404;
}
}