Skip to content

Instantly share code, notes, and snippets.

View HarrySky's full-sized avatar
👻
It always seems impossible until it is done

Igor Nehoroshev HarrySky

👻
It always seems impossible until it is done
View GitHub Profile
@HarrySky
HarrySky / 80-server.conf
Created December 22, 2020 22:48
nginx default server for getting all LetsEncrypt certificates
server {
listen 80 default_server;
server_tokens off;
access_log off;
location ^~ /.well-known/acme-challenge/ {
alias /usr/share/nginx/html/letsencrypt/.well-known/acme-challenge/;
}
location / {