Skip to content

Instantly share code, notes, and snippets.

@dmytrostriletskyi
Last active February 25, 2019 16:40
Show Gist options
  • Save dmytrostriletskyi/d5e66f4969bf081fb906d714dfbfda6b to your computer and use it in GitHub Desktop.
Save dmytrostriletskyi/d5e66f4969bf081fb906d714dfbfda6b to your computer and use it in GitHub Desktop.
comodo challenge
user www-data;
worker_processes auto;
pid /run/nginx.pid;
events {
worker_connections 768;
}
http {
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
server {
location = /.well-known/pki-validation/comodohashfile.txt {
alias /var/www/comodo/comodohashfile.txt;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment