Skip to content

Instantly share code, notes, and snippets.

@radupotop
Created March 14, 2022 01:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save radupotop/2aef0bdc0ccbd3a706044e3598b12cf5 to your computer and use it in GitHub Desktop.
Save radupotop/2aef0bdc0ccbd3a706044e3598b12cf5 to your computer and use it in GitHub Desktop.
Nginx default Dummy server
# Nginx default Dummy server
server {
listen 443 ssl default_server;
listen [::]:443 ssl default_server;
ssl_reject_handshake on;
return 444;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment